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
PhpStorm logo

PhpStorm

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

PhpStorm
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
Laravel Cloud logo

Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Cloud
Lucky Media logo

Lucky Media

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

Lucky Media
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
Shift logo

Shift

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

Shift
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $9500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
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
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Tinkerwell logo

Tinkerwell

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

Tinkerwell

The latest

View all →
First-Party Image Processing in Laravel 13.20 image

First-Party Image Processing in Laravel 13.20

Read article
Laravel Legacy Bridge: Carry Authenticated Sessions from a Legacy App into Laravel image

Laravel Legacy Bridge: Carry Authenticated Sessions from a Legacy App into Laravel

Read article
Laravel Quota: Usage Budgets for Calendar Periods image

Laravel Quota: Usage Budgets for Calendar Periods

Read article
Find the Security Vulnerabilities in Your Laravel App with Sensagraph image

Find the Security Vulnerabilities in Your Laravel App with Sensagraph

Read article
Uvora: A macOS Menu Bar App for Finding Laravel Projects image

Uvora: A macOS Menu Bar App for Finding Laravel Projects

Read article
Passwordless Sign-In with Fortify Two-Factor Support in Laravel image

Passwordless Sign-In with Fortify Two-Factor Support in Laravel

Read article