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://www.msaied.com) [ Home ](https://www.msaied.com) [ Projects ](https://www.msaied.com/projects) [ Articles  ](https://www.msaied.com/articles) [ Certificates ](https://www.msaied.com/certificates) [ Contact ](https://www.msaied.com#contact-section) 

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

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

  [ home ](https://www.msaied.com)    [ articles ](https://www.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://www.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%2Fwww.msaied.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%2Fwww.msaied.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://www.msaied.com/articles) 

 [ ![MySQL Query Profiling in Laravel: EXPLAIN ANALYZE, Slow Query Log, and Index Hints](https://cdn.msaied.com/481/8bfc417cb94b3e2868428e065fe4b166.png) laravel mysql performance 

### MySQL Query Profiling in Laravel: EXPLAIN ANALYZE, Slow Query Log, and Index Hints

Stop guessing why a query is slow. Learn how to use EXPLAIN ANALYZE, Laravel's slow query log listener, and in...

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

 28 Jul 2026     4 min read  

  Read    

 ](https://www.msaied.com/articles/mysql-query-profiling-in-laravel-explain-analyze-slow-query-log-and-index-hints) [ ![Laravel Custom Eloquent Relations: Building Polymorphic and Composite-Key Relations](https://cdn.msaied.com/480/c7d2c0d0fd1823460fbdb138f77b573f.png) laravel eloquent database 

### Laravel Custom Eloquent Relations: Building Polymorphic and Composite-Key Relations

Eloquent's built-in relations cover 90% of cases, but composite-key joins and non-standard polymorphic pivots...

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

 28 Jul 2026     4 min read  

  Read    

 ](https://www.msaied.com/articles/laravel-custom-eloquent-relations-building-polymorphic-and-composite-key-relations) [ ![PostgreSQL JSONB in Laravel: Indexing, Querying, and Casting Without the Overhead](https://cdn.msaied.com/479/d7c54bd7a42ee57610a29f19a2c5e0fa.png) laravel postgresql jsonb 

### PostgreSQL JSONB in Laravel: Indexing, Querying, and Casting Without the Overhead

JSONB columns unlock flexible schemas, but misused they become performance sinkholes. This guide covers GIN in...

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

 28 Jul 2026     4 min read  

  Read    

 ](https://www.msaied.com/articles/postgresql-jsonb-in-laravel-indexing-querying-and-casting-without-the-overhead) 

   [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://www.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://www.msaied.com)
- [Projects](https://www.msaied.com/projects)
- [Articles](https://www.msaied.com/articles)
- [Certificates](https://www.msaied.com/certificates)
- [Contact](https://www.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)
