Mar 14, 2026

★ Turn any OpenAPI spec into Laravel artisan commands

We just published a new package called Laravel OpenAPI CLI that turns any OpenAPI spec into dedicated Laravel artisan commands. Each endpoint gets its own command with typed options for path parameters, query parameters and request bodies. Let me walk you through what the package can do.

Feb 27, 2026

Livewire v4.2.0 Released with Security Hardening and Laravel 13 Support

Livewire v4.2.0 adds Laravel 13 support, reactive props during boot hooks, a new $errors.clear() method, and seven security hardening improvements.

Feb 27, 2026

Welcoming Elizabeth Barron as the New Executive Director of The PHP Foundation

The PHP Foundation — Supporting, Advancing, and Developing the PHP Language

Feb 26, 2026

This Week in Laravel: NativePHP Course, Laravel Security and Filament Turns 5

Useful Laravel links to read/watch for this week of February 26, 2026.

Feb 26, 2026

Filament through the years

It's hard to believe that we're already celebrating Filament's fifth birthday, so it seems fitting to take a stroll down memory lane and look at all the major milestones that Filament has achieved throughout its five year run. Whether you've been around since the beginning and want a hit of nostalgia, or you're new to the Filament community and want to see where Filament as you know it today came from, this post is worth the read!

Feb 26, 2026

Boost Guidelines & Skills Added in Inertia v2.3.16

Inertia v2.3.16 adds Boost guidelines and skills documentation and bumps the Svelte Kit dependency to 2.52.2.

Feb 25, 2026

Filament turns five in style!

We've come a long way since Filament's v1 release, and today, on Filament's fifth birthday, we launch a project that has been many months in the making: Filament's new rebrand!

Feb 25, 2026

Stop Failing APIs from Killing Your Queue — Fuse for Laravel

Stripe goes down on a Friday night and your queue workers don't know it. Every job hangs, retries, and blocks everything else. In this video, I break a simulated Stripe endpoint on purpose and show how Fuse for Laravel, the circuit breaker package I presented at Laracon India, automatically protects your queue, delays failing jobs, and recovers when the API comes back.

Feb 24, 2026

Blaze: An Optimized Blade Template Compiler for Laravel

Blaze is a Blade compiler from the Livewire team that pre-compiles anonymous Blade components into optimized PHP functions to reduce rendering overhead and speed up component-heavy apps

Feb 24, 2026

★ Laravel Permission v7 has been launched

Laravel's built-in authorization is great when permissions are defined in code. With gates and policies, you can write logic like this: // Defined in code, requires a deploy to change Gate::define('edit-posts', function (User $user) { return $user->is_admin; }); But in some projects roles and permissions are dynamic: created by users, managed through an admin panel, or changed at runtime without deploying code. Our Laravel Permission package can help you dynamically create roles and permissions. We just released v7 which doesn't bring any new features, but cleans up the internal code and modernizes it. Let me walk you through what the package can do.

Feb 24, 2026

Chief: Run Claude Code on Large Projects with Task-Based Workflows

Chief is a CLI tool that lets you build large projects with Claude Code by decomposing work into discrete tasks and running them iteratively.

Feb 23, 2026

Laravel OpenAPI CLI: Generate Artisan Commands from Your API Spec

Create Laravel commands for your OpenAPI specs with Laravel OpenAPI CLI