- Laravel Framework v13.20.0
- Laravel Framework v13.22.0
- Laravel Framework v13.23.0
- Everything we announced at Laracon US 2026
- Deploy Next.js and Nuxt apps on Laravel Cloud
- AI coding agents pass tests. Can they write idiomatic Laravel?
- Laravel Cloud security defaults behind every deploy
Laravel Framework
First-party image processing
Laravel 13.20.0 added first-party support for image processing. The newImage class lets you transform images and manipulate images loaded from storage using Laravel’s own API.
Conditional container binding
13.22.0 added the#[BindWhen()] attribute. You can now move container bindings that depend on runtime conditions out of your service provider’s registration logic and onto the class as an attribute.
Queue and job improvements
queue:clearcan now target multiple queues.QueueFakecan report the creation time of the oldest pending job.- The
Delayattribute is now supported onBus::batchandbulk. - Queue tests now take delay time into account.
Logging and security
13.23.0 introduced a monthly log channel and a monthly log driver, letting you configure logs that rotate every month through the standard logging configuration. Maintenance mode bypass secrets are now compared using a timing-safe comparison, and credentials in HTTP tests are treated as sensitive values.Other changes
RateLimitercan now be configured to be macroable.- The expiration handling of
Cache::touch()was fixed. - An
assertEmptyassertion was added to theStoragefacade. - The
#[SensitiveParameter]attribute was applied to parameters that accept sensitive information. ImageManager::fromStoragenow accepts an Enum as the disk name.
Laravel Cloud
Managed Queues
Managed Queues were added to Laravel Cloud. Workers scale automatically based on queue load, failed jobs can be inspected in the dashboard, and workers can scale down to zero when idle.Next.js and Nuxt deployments
Laravel Cloud can now deploy Next.js and Nuxt frontends alongside a Laravel app in the same project, letting you manage the application and its frontend through the same deploy flow.Security defaults
Every Laravel Cloud deployment now ships with WAF, runtime patching, audit logs, network isolation, and package vulnerability scanning as standard.Laracon US 2026
At Laracon US 2026 in July, the following updates across the Laravel ecosystem were announced:- Laravel LSP: Language Server Protocol support for Laravel projects
- Inertia DevTools: Developer tooling for Inertia applications
- Managed Queues: Automatic queue worker scaling on Laravel Cloud
- Scale to Zero: Idle scale-down for Laravel Cloud