> ## Documentation Index
> Fetch the complete documentation index at: https://kawax.biz/llms.txt
> Use this file to discover all available pages before exploring further.

# July 2026 Laravel updates

> The July 2026 official Laravel 13 and Laravel Cloud updates. Image processing, conditional container binding, queue management, monthly logs, and the announcements from Laracon US 2026.

July 2026 brought Laravel 13 minor releases that added features around image processing, queues, the container, and logging. On Laravel Cloud, Managed Queues and deployments for Next.js and Nuxt apps were announced, and Laracon US 2026 introduced new tooling including the Laravel LSP and Inertia DevTools.

Unlike June, a monthly product update post was not published in July. This page collects the official releases and blog posts published during the month.

Sources:

* [Laravel Framework v13.20.0](https://github.com/laravel/framework/releases/tag/v13.20.0)
* [Laravel Framework v13.22.0](https://github.com/laravel/framework/releases/tag/v13.22.0)
* [Laravel Framework v13.23.0](https://github.com/laravel/framework/releases/tag/v13.23.0)
* [Everything we announced at Laracon US 2026](https://laravel.com/blog/everything-we-announced-at-laracon-us-2026)
* [Deploy Next.js and Nuxt apps on Laravel Cloud](https://laravel.com/blog/deploy-nextjs-and-nuxt-apps-on-laravel-cloud)
* [AI coding agents pass tests. Can they write idiomatic Laravel?](https://laravel.com/blog/idiomatic-laravel-ai-coding-agents)
* [Laravel Cloud security defaults behind every deploy](https://laravel.com/blog/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 new `Image` 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:clear` can now target multiple queues.
* `QueueFake` can report the creation time of the oldest pending job.
* The `Delay` attribute is now supported on `Bus::batch` and `bulk`.
* 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

* `RateLimiter` can now be configured to be macroable.
* The expiration handling of `Cache::touch()` was fixed.
* An `assertEmpty` assertion was added to the `Storage` facade.
* The `#[SensitiveParameter]` attribute was applied to parameters that accept sensitive information.
* `ImageManager::fromStorage` now 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

***

## AI development

An evaluation from the Laravel Boost team introduced work on measuring not just whether AI coding agents can make Laravel tests pass, but whether they can write idiomatic Laravel code. Correct use of Laravel conventions and framework APIs is being treated as an evaluation axis for AI development.


## Related topics

- [March 2026 Laravel updates](/en/blog/changelog/202603.md)
- [April 2026 Laravel updates](/en/blog/changelog/202604.md)
- [May 2026 Laravel updates](/en/blog/changelog/202605.md)
- [June 2026 Laravel updates](/en/blog/changelog/202606.md)
- [Blog](/en/blog/index.md)
