4,000 emails/month for free | Mailtrap sends real emails now!

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
Jump24 - UK Laravel Agency

Laravel Developers that Click into Place. Never outsourced. Never offshored. Always exceptional.

Visit Jump24 - UK Laravel Agency
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
PhpStorm logo

PhpStorm

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

PhpStorm
Laravel Cloud logo

Laravel Cloud

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

Laravel Cloud
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 →
Matt Stauffer Joins the PHP Foundation Board — What It Means for Laravel image

Matt Stauffer Joins the PHP Foundation Board — What It Means for Laravel

Read article
Log User Activity in Your Laravel App with Activity Log v5  image

Log User Activity in Your Laravel App with Activity Log v5

Read article
Manage Laravel Cloud from the Terminal with the New Cloud CLI image

Manage Laravel Cloud from the Terminal with the New Cloud CLI

Read article
UnitTest Attribute and More in Laravel 13.3.0 image

UnitTest Attribute and More in Laravel 13.3.0

Read article
PAO: Agent-Optimized Output for PHP Testing Tools image

PAO: Agent-Optimized Output for PHP Testing Tools

Read article
PhpStorm 2026.1 Released image

PhpStorm 2026.1 Released

Read article