News

Blade @hasStack Directive Added in Laravel 12.39

Published
Blade @hasStack Directive Added in Laravel 12.39 image

Release updates

Never miss a Laravel release

Get an email whenever a new Laravel release lands.

The Laravel team released version 12.39.0 this week with a Blade @hasStack directive, a middleware filter for the route:list command, along with the latest type updates, fixes, and more.

New @hasStack Blade Directive

Andrew Brown contributed a @hasStack Blade directive that can be used to wrap @stack directives for conditional output:

@push('list')
<li>Item 1</li>
@endpush
 
@hasstack('list')
<ul>
@stack('list')
</ul>
@endif
 
{{-- output --}}
<ul>
<li>Item 1</li>
</ul>

See Pull Request #57788 for details.

Route List Middleware Filter

Jason McCreary contributed a --middleware option to filter route:list output by middleware. It accepts a single middleware class or middleware group name. It can also match a partial string:

php artisan route:list --middleware=api
php artisan route:list --middleware=ThrottleRequests

See Pull Request #57797 for implementation details.

Release notes

You can see the complete list of new features and updates below and the diff between 12.38.0 and 12.39.0 on GitHub. The following release notes are directly from the changelog:

v12.39.0

Paul Redmond photo

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

Sponsored

laravelcloud logo
Laravel Cloud

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

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article