The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

Livewire 4 and Blade Improvements in Laravel VS Code Extension v1.5.0

Last updated on by

Livewire 4 and Blade Improvements in Laravel VS Code Extension v1.5.0 image

Release Date: January 29, 2026

Version: v1.5.0

Summary

Laravel VS Code Extension v1.5.0 introduces enhanced support for Livewire 4 and Blade components. This release brings improved parsing, autocompletion, and intellisense for modern Livewire and Blade development workflows.

Key highlights include:

  • Enhanced Livewire 4 component and namespace parsing
  • Livewire props autocompletion and intellisense
  • Blade component props support
  • Improved Livewire Multi-file component (MFC) support

What's New

Enhanced Livewire 4 Component Parsing

The extension now provides better parsing for Livewire 4 components and namespaces, improving how it handles modern Livewire syntax. This enhancement allows the extension to correctly identify and process Livewire 4 component structures, providing better code intelligence across your Livewire applications.

<?php
 
namespace App\Livewire\Dashboard;
 
use Livewire\Component;
 
class UserStats extends Component
{
// Extension now correctly parses namespaced components
public function render()
{
return view('livewire.dashboard.user-stats');
}
}

PR: #556

Livewire Props Support

This release adds autocompletion and intellisense for Livewire props, making it easier to work with component properties. When you define props using the #[Prop] attribute, the extension now provides proper code completion and documentation.

<?php
 
namespace App\Livewire;
 
use Livewire\Attributes\Prop;
use Livewire\Component;
 
class UserCard extends Component
{
#[Prop]
public User $user;
 
#[Prop]
public bool $showAvatar = true;
 
// Extension provides autocompletion for these props
public function render()
{
return view('livewire.user-card');
}
}

When using the component in your views, the extension now recognizes these props and provides appropriate suggestions and documentation.

PR: #553

Blade Component Props

Similar to Livewire props, the extension now provides better support for Blade component props. This includes proper syntax highlighting and intellisense when using the @props directive in your Blade components.

{{-- resources/views/components/alert.blade.php --}}
@props([
'type' => 'info',
'dismissible' => false,
'message'
])
 
<div class="alert alert-{{ $type }}">
{{ $message }}
 
@if($dismissible)
<button type="button" class="close">×</button>
@endif
</div>

The extension now recognizes these prop definitions and provides better code intelligence when working with component attributes.

PR: #554

Livewire 4 Multi-file Component Support

This release improves code intelligence for Livewire 4's Multi-file component (MFC) support. The extension now better understands and provides suggestions for functional Livewire components, making it easier to work with this modern pattern.

PR: #561

Bug Fixes and Improvements

  • Fixed missing semicolons in markdown property documentation (#558)

Upgrade Notes

No breaking changes are expected. Update through the VS Code Extensions marketplace or download directly from the marketplace page.

References

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Tinkerwell

Enjoy coding and debugging in an editor designed for fast feedback and quick iterations. It's like a shell for your application – but with multi-line editing, code completion, and more.

Visit Tinkerwell
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $3200/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
Get expert guidance in a few days with a Laravel code review logo

Get expert guidance in a few days with a Laravel code review

Expert code review! Get clear, practical feedback from two Laravel devs with 10+ years of experience helping teams build better apps.

Get expert guidance in a few days with a Laravel code review
Acquaint Softtech logo

Acquaint Softtech

Acquaint Softtech offers AI-ready Laravel developers who onboard in 48 hours at $3000/Month with no lengthy sales process and a 100 percent money-back guarantee.

Acquaint Softtech
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit

The latest

View all →
Improved Skill and Guideline Detection in Laravel Boost v2.2.0 image

Improved Skill and Guideline Detection in Laravel Boost v2.2.0

Read article
"The Vibes" — NativePHP Hosts a Day 3 after Laracon US image

"The Vibes" — NativePHP Hosts a Day 3 after Laracon US

Read article
What We Know About Laravel 13 image

What We Know About Laravel 13

Read article
New Colors Added in Tailwind CSS v4.2 image

New Colors Added in Tailwind CSS v4.2

Read article
Factory makeMany() Method in Laravel 12.52.0 image

Factory makeMany() Method in Laravel 12.52.0

Read article
Laravel Adds an Official Svelte + Inertia Starter Kit image

Laravel Adds an Official Svelte + Inertia Starter Kit

Read article