Laravel 13: Release Date, New Features, PHP Attributes &amp; More | Mohamed Said        [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://msaied.com) [ Home ](https://msaied.com) [ Projects ](https://msaied.com/projects) [ Articles  ](https://msaied.com/articles) [ Certificates ](https://msaied.com/certificates) [ Contact ](https://msaied.com#contact-section) 

       [  ](https://github.com/EG-Mohamed)       

 [ Home ](https://msaied.com) [ Projects ](https://msaied.com/projects) [ Articles ](https://msaied.com/articles) [ Certificates ](https://msaied.com/certificates) [ Contact ](https://msaied.com#contact-section) 

  [ home ](https://msaied.com)    [ articles ](https://msaied.com/articles)    Laravel 13: Release Date and Key New Features Announced at Laracon EU        On this page       1. [  Laravel 13: Launch Date and Release Details ](#laravel-13-launch-date-and-release-details)
2. [  Embracing PHP Attributes Across the Framework ](#embracing-php-attributes-across-the-framework)
3. [  Starter Kits: Revamped Teams Functionality ](#starter-kits-revamped-teams-functionality)
4. [  Starter Kits: Passkey Integration ](#starter-kits-passkey-integration)
5. [  Product News and Futuristic AI Demo ](#product-news-and-futuristic-ai-demo)

  ![Laravel 13: Release Date and Key New Features Announced at Laracon EU](https://cdn.msaied.com/101/ee4b020f56a21a17028c855c3f04576f.png)

 [  Laravel ](https://msaied.com/articles?category=laravel)  #Laravel   #PHP   #Laracon EU   #New Features   #PHP Attributes   #AI Development  

 Laravel 13: Release Date and Key New Features Announced at Laracon EU 
=======================================================================

     5 Mar 2026      3 min read    ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MJ.jpg)  Mohamed Said  

       Table of contents

1. [  01   Laravel 13: Launch Date and Release Details  ](#laravel-13-launch-date-and-release-details)
2. [  02   Embracing PHP Attributes Across the Framework  ](#embracing-php-attributes-across-the-framework)
3. [  03   Starter Kits: Revamped Teams Functionality  ](#starter-kits-revamped-teams-functionality)
4. [  04   Starter Kits: Passkey Integration  ](#starter-kits-passkey-integration)
5. [  05   Product News and Futuristic AI Demo  ](#product-news-and-futuristic-ai-demo)

 Laracon EU 2026 has just wrapped up, and Taylor Otwell, the creator of Laravel, has shared significant updates regarding the upcoming Laravel 13 release. Developers can anticipate a host of new features and improvements designed to streamline workflows and embrace modern PHP practices.

Laravel 13: Launch Date and Release Details
-------------------------------------------

Mark your calendars: Laravel 13 is set to launch on **March 17th**, just a few weeks away. This release follows Laravel's established annual release cycle, typically occurring in February or March. Alongside Laravel 13, the Laravel AI SDK will also be officially marked as stable, moving out of its beta phase.

A key piece of information for developers is that Laravel 13 will not introduce any breaking changes. This means upgrading from previous versions should be a straightforward process, with tools like Laravel Shift continuing to support the transition. While the core remains stable, the update brings several new optional features for developers to explore.

Embracing PHP Attributes Across the Framework
---------------------------------------------

One of the most significant enhancements in Laravel 13 is the widespread adoption of PHP attributes. The framework will introduce approximately 15 new areas where developers can leverage attributes as an alternative to traditional syntax. This move aims to modernize code structure and improve readability.

For instance, consider a typical Queue class. Previously, properties like `tries` and `maxExceptions` were defined directly within the class:

```php
class ReserveFlight implements ShouldQueue
{
    use Queueable;

    public $tries = 5;
    public $maxExceptions = 3;
}

```

In Laravel 13, these can be elegantly represented using PHP attributes:

```php
use Illuminate\Queue\Attributes\MaxExceptions;
use Illuminate\Queue\Attributes\Tries;

#[Tries(5)]
#[MaxExceptions(3)]
class ReserveFlight implements ShouldQueue
{
    use Queueable;
    // ...
}

```

This attribute-based approach extends to other areas of Laravel, including:

- **Eloquent Models:** Defining fillable and hidden attributes. ```php
    #[Fillable(['name', 'email', 'password'])]
    #[Hidden(['password', 'remember_token'])]
    class User extends Authenticatable
    {
        // ...
    }

    ```
- **Middleware and Authorization in Controllers:** Applying middleware and authorization logic directly to controller methods. ```php
    class FlightController extends Controller
    {
        #[Middleware(LogRequests::class)]
        #[Authorize('view', 'flight')]
        public function show(Flight $flight)
        {
            // ...
        }
    }

    ```
- **Closures with Attributes:** Even closures can now utilize attributes for enhanced functionality. ```php
    class FlightController extends Controller
    {
        #[Middleware(LogRequests::class)]
        #[Middleware(static function (Request $request, Closure $next) {
            info('Whoa...');
            return $next($request);
        })]
        public function show(Flight $flight)
        {
            // ...
        }
    }

    ```

Starter Kits: Revamped Teams Functionality
------------------------------------------

The popular Jetstream starter kit's Teams functionality is making a comeback in the new starter kits for Laravel 13. This iteration offers a more flexible implementation, allowing developers to manage multiple teams within different browser tabs simultaneously, a limitation of the previous version.

Starter Kits: Passkey Integration
---------------------------------

Another highly anticipated feature is the integration of Passkeys for enhanced security. This feature will be incorporated into the starter kits and the underlying Laravel Fortify package, providing a more secure and convenient authentication experience.

Product News and Futuristic AI Demo
-----------------------------------

Beyond Laravel 13, Taylor Otwell announced the upcoming Laravel Cloud API and CLI, with a free trial for Laravel Cloud expected soon. He also showcased a compelling demonstration of AI-powered development. In a live demo, a bug was introduced to a website. Using voice commands, Taylor instructed an AI agent (OpenCode with GPT-5.3-Codex) to fix the issue. The AI agent, leveraging Nightwatch MCP, automatically resolved the bug, created a pull request, and even proposed merging it after testing on a Laravel Cloud instance. This seamless, voice-driven workflow highlights the future potential of AI in software development.

These advancements signal an exciting period for the Laravel ecosystem, blending robust framework development with cutting-edge AI capabilities.

Read the original announcement here: [Laravel 13: Launch Date and New Features (News from Laracon EU)](https://laraveldaily.com/post/laravel-13-laracon-eu-taylor-otwell)

 Found this useful?

          [  ](https://twitter.com/intent/tweet?url=https%3A%2F%2Fmsaied.com%2Farticles%2Flaravel-13-release-date-and-key-new-features-announced-at-laracon-eu&text=Laravel+13%3A+Release+Date+and+Key+New+Features+Announced+at+Laracon+EU) [  ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fmsaied.com%2Farticles%2Flaravel-13-release-date-and-key-new-features-announced-at-laracon-eu) 

 Frequently Asked Questions 
----------------------------

  3 questions  

     Q01  When will Laravel 13 be released?        Laravel 13 is scheduled for release on March 17th. 

      Q02  Will Laravel 13 have breaking changes?        No, Laravel 13 will not introduce any breaking changes, ensuring a smooth upgrade process. 

      Q03  What are the key new features in Laravel 13?        Key features include extensive use of PHP attributes, revamped Teams functionality in starter kits, Passkey integration, and the official stable release of the Laravel AI SDK. 

  Continue reading

 More Articles 
---------------

 [ View all    ](https://msaied.com/articles) 

 [ ![Laravel API Rate-Limiting: Custom Limiters, Per-Route Strategies, and Header Contracts](https://cdn.msaied.com/474/47b5edd1bda5625b01ae20f7684ed199.png) laravel api rate-limiting 

### Laravel API Rate-Limiting: Custom Limiters, Per-Route Strategies, and Header Contracts

Go beyond the default throttle middleware. Build named rate limiters with dynamic keys, per-user tiers, and co...

  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MJ.jpg)  Mohamed Said 

 27 Jul 2026     4 min read  

  Read    

 ](https://msaied.com/articles/laravel-api-rate-limiting-custom-limiters-per-route-strategies-and-header-contracts-1) [ ![Profiling Laravel with Blackfire and Xdebug: Finding Real Bottlenecks](https://cdn.msaied.com/473/5b2261450fb7c3c68870997e338c2e1b.png) laravel performance profiling 

### Profiling Laravel with Blackfire and Xdebug: Finding Real Bottlenecks

Stop guessing where your Laravel app is slow. Learn how to use Blackfire and Xdebug profilers together to pinp...

  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MJ.jpg)  Mohamed Said 

 26 Jul 2026     4 min read  

  Read    

 ](https://msaied.com/articles/profiling-laravel-with-blackfire-and-xdebug-finding-real-bottlenecks-1) [ ![Filament v4 Migrating from v3: Breaking Changes and Refactor Patterns](https://cdn.msaied.com/472/bb7fbf8441c775fcfadd23850e1756e8.png) filament laravel migration 

### Filament v4 Migrating from v3: Breaking Changes and Refactor Patterns

A practical, opinionated guide to the most impactful Filament v3→v4 breaking changes: schema-based forms, the...

  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MJ.jpg)  Mohamed Said 

 26 Jul 2026     4 min read  

  Read    

 ](https://msaied.com/articles/filament-v4-migrating-from-v3-breaking-changes-and-refactor-patterns) 

   [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://msaied.com)Senior Backend Engineer specializing in Laravel, scalable SaaS platforms, APIs, and cloud infrastructure. I build secure, high-performance web applications that help businesses grow.

Explore

- [Home](https://msaied.com)
- [Projects](https://msaied.com/projects)
- [Articles](https://msaied.com/articles)
- [Certificates](https://msaied.com/certificates)
- [Contact](https://msaied.com#contact-section)

Connect

- [   hello@msaied.com ](mailto:hello@msaied.com)
- [   +20 109 461 9204 ](tel:+201094619204)

© 2026 Mohamed Said. All rights reserved.

 [  ](https://github.com/EG-Mohamed) [  ](https://www.linkedin.com/in/msaiedm/) [  ](https://wa.me/201094619204) [  ](mailto:hello@msaied.com) [  ](https://drive.google.com/file/u/0/d/1MF20IPRJyzfy32mhEutjL5EpSls0w2Q8/view)
