Laravel 13: New Features, Release Date, Install Now
- Early Look at Laravel 13
- Laravel 13 - Release Date and Schedule
- New Features in Laravel 13
- How to Install & Try Laravel 13 Today
Early Look at Laravel 13
Laravel 13 is still in development, but thanks to the framework’s support policy we know it is due in the first quarter of 2026. This blog post gives an early preview of Laravel 13’s roadmap and new features based on in-progress pull requests. I’ll update this post monthly as Laravel 13’s development continues, so check back for the latest changes and additions.
Laravel 13 - Release Date and Schedule
According to the official Support Policy, Laravel 13 is slated for release in Q1 2026. Each major version has one year and six months of bugfixes and two years of security fixes. For context, Laravel 12 was released in February 2025 and will receive bug fixes until August 13, 2026, and security fixes until February 24, 2027. In comparison, Laravel 13 will target PHP 8.3+ and is expected around Q1 2026 (with bug fixes through Q3 2027 and security fixes through Q1 2028). In other words, you have ample time to upgrade projects; Laravel 12 remains supported well into 2027.
New Features in Laravel 13
Laravel 13 has both groundwork & cleanup, and new developer-facing features. However, several merged and proposed PRs hint at what’s coming. Key highlights include:
Symfony 7.4 & 8.0 support
The framework is being updated to support the latest Symfony components (PR #56029). This means Laravel’s underlying packages (HTTP, Console, etc.) will work with Symfony 7.4 and 8.0 when 13 is released.
Cache touch() method
A new Cache::touch($key) (and corresponding store touch) has been added in PR #55954 to extend the TTL (time-to-live) of a cached item. This lets you refresh a cache key’s expiration without retrieving it.
Subdomain routing order
In PR #55921, subdomain routes are now registered before routes without domains. This change ensures routes tied to specific subdomains take priority during routing.
Model boot-time restrictions
PR #55685 prevents new Eloquent model instances from being created during the boot() method of a model. In practice, this hardens model boot logic by disallowing instantiation of other models (which can cause unexpected side effects) while the current model is booting.
PHP 8.3 requirement
Laravel 13 will bump its minimum PHP version to 8.3 (up from 8.2). In other words, the entire codebase is being upgraded to PHP 8.3, dropping old polyfills and backward-compat hacks to streamline the framework and “let it move faster.” (See PR #54763).
Each of the above items links to its PR on GitHub for full details. More new features are expected to arrive later, and I will document those as they come.
How to Install & Try Laravel 13 Today
Because Laravel 13 is not yet officially released, the main way to try it now is via the Laravel installer or Composer in “dev” mode. For example, using the Laravel installer you can run:
laravel new my-app --dev
Or with Composer directly:
composer create-project --prefer-dist laravel/laravel my-app dev-master
This creates a new Laravel project using the dev-master (i.e Laravel 13) branch. You can then cd my-app and use Laravel as usual (note: you’ll need PHP 8.3 installed to meet the new requirement). These steps let you experiment with the early Laravel 13 codebase. As always, be cautious using dev releases in production, but this is a great way to preview upcoming features.
All of the above is based on the current development state. I’ll continue to monitor PRs and update this post as new features land in Laravel 13. Stay tuned!
Stay Updated.
I'll you email you as soon as new, fresh content is published.