Laracon EU 2026 was the largest European Laravel conference on record. Roughly 1,000 developers descended on the Passenger Terminal Amsterdam on March 2 and 3, a glass-and-steel venue perched directly on the River IJ. What they witnessed across those two days was not a routine framework update. It was a restatement of intent.
Taylor Otwell didn’t just announce Laravel 13 at Laracon EU 2026. He released a new vision: “The clean stack for Artisans and agents.” That framing matters. “Agents” is not marketing copy here. It is a concrete architectural direction. If you work on AI-adjacent Laravel applications (and increasingly, that means most of us) what happened in Amsterdam directly shapes the decisions you make this quarter. This piece covers every headline announcement, the talks worth watching, and the practical implications for production teams.
This article is also part of our broader AI Architecture coverage. If you’re thinking through how AI fits your Laravel stack at a structural level, that is where to start.
The Venue, the Scale, and the Energy
The Passenger Terminal is not a conventional conference hall. It is a working cruise terminal with a main hall large enough to seat a thousand people without feeling cramped. The energy was palpable from the moment Nuno Maduro opened the conference. This year’s Laracon EU, with around 1,000 attendees, was the largest European Laravel conference ever.
That attendance figure matters beyond the headline number. The community that showed up was not uniform. Teams from agencies, product companies, and freelancers. Developers who had never attended a Laracon before alongside people who have been at every edition. As always with Laracons, Laracon EU 2026 was more than a conference. It’s not just about the talks. It’s about spending time with like-minded people and sharing an experience as well as celebrating the Laravel community. The pre-party the evening before was where half the real conversations happened. The dinner conversations after Taylor’s keynote ran until midnight.
The practical takeaway here: if you are weighing whether to attend in 2027, the value is not just the stage content. It is the corridor conversations with people debugging the same problems you are.
Taylor Otwell’s Keynote: The “Merge It” Moment
By far the most discussed moment of the conference was Taylor Otwell’s keynote on the evening of the first day. It was scheduled to close Day 1, and by 9pm the main hall was still packed. What followed was genuinely hard to describe without sounding like you are exaggerating.
If there was one single moment that made the vision behind the entire Laravel ecosystem tangible, it was Taylor’s live demo on stage: The complete Software Development Lifecycle, from error detection to deployment, in under two minutes, live in front of 1,000 attendees.
The sequence was deliberate. A bug occurs in the application. Nightwatch detects the error automatically. An AI agent with Nightwatch MCP integration analyses and fixes the error autonomously. A pull request is automatically opened. Laravel Cloud creates a preview environment. Taylor reviews, says “Merge it”. The change goes live.
Voice-driven. No manually written code. Two minutes.
The jawdropping moment was when the AI agent called Taylor and told him “There’s a PR in the repo, do you want me to merge it?” And then it happened: bug fixed and auto-deployed, all with just voice, without writing any code.
The room reaction was not the usual polite applause of a conference keynote. It was the particular silence that precedes a standing ovation, because people needed a few seconds to process what they had just seen. We’ve all talked about AI-assisted development in the abstract. This was a functioning, live demonstration of the entire loop closing: monitoring, diagnosis, remediation, review, and deployment, as a single integrated workflow.
Taylor himself put it succinctly: Laravel, with its clear conventions, comprehensive documentation, and 15 years of example code, is ideally positioned for an era in which AI agents are increasingly becoming part of the development process.
That is not a boast. It is a defensible structural argument. The reason LLM agents work well with Laravel is precisely because the framework has consistent, well-documented conventions that agents can reason about reliably. Convention over configuration turns out to be excellent training data.
Laravel 13: What Actually Shipped
Laravel 13 was released on March 17, 2026, announced by Taylor Otwell at Laracon EU 2026, with zero breaking changes, making it the smoothest upgrade in Laravel’s history. The only requirement change is PHP 8.3 minimum.
The headline features are worth taking individually.
PHP Attributes across 15+ locations. Laravel 13 will include PHP attributes across 15+ locations. These are optional, so nothing breaks if you don’t adopt them immediately. Middleware registration, authorisation policies, and job configuration can all now be expressed declaratively on the class itself rather than in separate registration files. Whether you adopt them on Day 1 or wait for the ecosystem to settle is a judgement call, but the direction is clear: Laravel is moving toward the attribute syntax as its idiomatic configuration style. If you are still registering middleware in long arrays, your code is already going to read as dated within a release cycle.
Reverb database driver. A Reverb database driver arrives with Laravel 13, eliminating the need for Redis in smaller broadcasting setups. This is a significant quality-of-life improvement for teams that run Reverb but do not need Redis for anything else. It reduces infrastructure surface area. Whether it holds up under real concurrency pressure is something we will find out over the next few months as teams hit it in production.
Passkey authentication. Passkey authentication is coming to all starter kits and Laravel Fortify, complemented by a client-side companion package. This is the right move, and it is overdue. Password-based authentication has a long tail of support burden attached to it. Passkeys remove that tail.
Cache::touch(). A small addition, but one that solves a genuine annoyance: extending a cache entry’s TTL without re-fetching or re-computing the value. We have implemented this manually more than once using custom cache wrappers. Having it built in is welcome.
For the complete feature analysis from an AI development perspective, see what Laravel 13 actually changes for AI development.
The Laravel AI SDK Goes Stable
This is the announcement with the longest tail. On the same date as Laravel 13’s release, the Laravel AI SDK was tagged as officially stable and out of beta.
The SDK ships with several capabilities that matter in production:
Provider-agnostic design. The SDK abstracts the interface, allowing you to switch between different LLM providers without rewriting application logic. Model failover: if one model goes down, a fallback automatically kicks in, critical for production applications. Agent Classes with schema-defined output: structured AI responses that integrate in a type-safe manner into existing application logic. Vector embedding and similarity search: integrated directly into Eloquent, significantly simplifying semantic search in Laravel applications. Queuing of AI tasks: AI tasks can be processed through Laravel’s queue system as usual.
The provider-agnostic design is the decision that matters most here. Any team currently hard-coding an OpenAI or Anthropic SDK directly into their service layer is building technical debt. The Laravel AI SDK gives you the abstraction layer that most teams were building manually anyway. Our production guide to provider-agnostic AI integration in Laravel covers the architectural patterns that the SDK now formalises at the framework level. If you are migrating existing AI integration code, that is the reference.
[Architect’s Note] The SDK’s Eloquent-integrated vector search is the quiet headline most teams will underestimate. Semantic search without a separate vector database layer is not a complete RAG replacement for every use case, but for the majority of content-search scenarios most Laravel apps actually need, it removes an entire infrastructure dependency. Assess whether you still need pgvector or Pinecone before reaching for them by default.
NativePHP Super Native: Blade Goes Truly Native
If one talk generated the most feverish corridor conversations after it ended, it was the NativePHP thread across both conference days.
Simon Hamp presented the current state of NativePHP for Mobile: the modular plugin architecture, the free open-source core “NativePHP Air,” and the tooling around Jump and Bifrost for App Store deployments. That was already interesting. Then Shane Rosenthal took the stage on Day 2 and went further.
“Super Native” is an entirely new approach where Blade components and Tailwind CSS classes are translated directly into native UI elements through a custom parser. No WebView, no bridge, no overhead. The benchmarks showed UI interactions in the microsecond range, in some tests faster than React Native and Flutter. The live demo showed a functional to-do app with Eloquent, various native UI components, and app clones generated by an LLM in a single pass that rendered as 100% native UI.
We were sceptical on first pass. Then the demo ran. The implications are real: PHP teams could build native mobile and desktop applications without leaving the Laravel ecosystem. Whether Super Native holds up under complex UI requirements in production apps is an open question. The honest answer is that nobody knows yet, because the benchmarks shown were controlled environments. But the proof of concept is convincing enough that it warrants serious evaluation for internal tools and MVPs.
The Talks That Will Shape Your Next Sprint
Beyond the keynote, Laracon EU 2026 had one of the strongest community talk lineups in recent memory. A few that are worth watching back:
Yannick Kupferschmidt: AI Won’t Fail Loudly, It’ll Fail Quietly. The danger of AI agents doesn’t lie in obvious errors, but in subtle bugs and gradual architecture drift. The antidote is “Context Engineering”: not just better prompts, but structured guidelines files, reusable skills, and deliberate control over what an agent receives as context. Larger context windows don’t automatically mean better results. Targeted context does. This is the talk most teams building AI features need to watch first.
Peter Suhm: Unblocking Your Users with AI. A pragmatic framework for integrating AI into existing Laravel applications rather than greenfield projects. Three practical entry points depending on where users get stuck, with real-world examples. No vague “AI-first” positioning. Concrete integration points.
Marcel Pociot: Refactoring to Parallel. Marcel’s talk on asynchronous refactoring patterns paired well with the AI SDK’s queue integration story. If you are building AI pipelines and not yet thinking about concurrency, this one is relevant immediately.
Tobias Petry: One Billion Records with Laravel. One of the more technically dense talks of the conference. Query optimisation, indexing strategy, and Eloquent behaviour at scale. If your application is approaching data volumes where default Eloquent patterns start to break, this is required watching.
Inertia v3. The beta for Inertia v3 was due to be tagged at any time following the conference. Simpler, slimmer, and with reduced client-side overhead. If your team runs Inertia-based frontends, the upgrade path is worth evaluating now rather than waiting for it to become urgent.
Dan Harrin: Abstractions through description, not instruction. One of the underrated talks of the event. The core argument: better abstractions emerge from describing the problem well, not from instructing your way to a solution. Directly applicable to AI prompt design and to API contract design in equal measure.
For teams looking to build agentic Laravel applications that hold up in production, Kupferschmidt’s talk on quiet AI failure is the one to pair with your architecture decisions.
AI as Infrastructure, Not a Feature
The most important thing about Laracon EU 2026 was not any single announcement. It was the tone.
AI was not presented as an add-on or a differentiator you bolt onto an existing application. It was treated as infrastructure, the same category as queues, caching, and broadcasting. The Laravel AI SDK ships with queue integration. Vector search ships inside Eloquent. Model failover ships as a first-class SDK concern.
That framing carries a practical implication: teams that are building AI features as isolated packages or service classes bolted onto otherwise conventional Laravel applications are going to find themselves refactoring again in twelve months. The framework is standardising around conventions for AI integration. Teams that adopt those conventions early will carry less technical debt.
If you are currently evaluating the current AI development stack for Laravel, the SDK stable release changes several of the decisions that were previously in play.
The production deployment implications deserve equal attention. The “Merge It” demo was not just about AI. It was about what a closed-loop deployment pipeline looks like when every component in the ecosystem integrates at the API level: Nightwatch, Cloud, the AI agent, the queue system. If you are still running manual deployment workflows, the production deployment guide is the right place to close that gap before the tooling gets further ahead of your process.
The Honest Verdict
Laracon EU 2026 was not a conference about what might be possible. What unfolded in real time wasn’t some future scenario. It’s the concrete direction the Laravel ecosystem is heading: A fully integrated workflow where monitoring, AI-powered debugging, code review, and deployment seamlessly interlock.
The announcements are real. The SDK is stable. Laravel 13 is live. The “Merge It” demo ran without edits in front of a thousand people.
What Laracon EU 2026 made clear is that the question for production Laravel teams is no longer “should we integrate AI?” The question is “how close to the framework’s conventions are we building when we do it?” The teams that answer that question well in the next six months will be significantly further ahead by the time Laracon EU 2027 arrives.
Frequently Asked Questions
What was announced at Laracon EU 2026?
The major announcements were Laravel 13 (released March 17, 2026), the Laravel AI SDK reaching stable status, a new Laravel Cloud CLI, Passkey authentication support for starter kits and Fortify, a Reverb database driver removing the Redis dependency for broadcasting, and NativePHP Super Native, a new approach for rendering Blade components as fully native mobile UI without WebView.
When was Laravel 13 released?
Laravel 13 was released on March 17, 2026, approximately two weeks after its announcement at Laracon EU 2026. It requires PHP 8.3 as a minimum and introduces zero breaking changes.
What is the Laravel AI SDK?
The Laravel AI SDK is a first-party Laravel package providing a provider-agnostic interface for integrating large language models into Laravel applications. Features include model failover, structured agent output, Eloquent-integrated vector search, image generation, and queue-based AI task execution. It reached stable status with the Laravel 13 release.
What is NativePHP Super Native?
Super Native is an approach demonstrated at Laracon EU 2026 by Shane Rosenthal that translates Blade components and Tailwind CSS classes into native mobile UI elements via a custom parser, with no WebView, no bridge layer, and benchmarked UI interactions in the microsecond range. It is an extension of the NativePHP ecosystem, which also includes NativePHP Air (the free open-source core) and tooling for App Store deployment.
Who were the key speakers at Laracon EU 2026?
Key speakers included Taylor Otwell (keynote), Nuno Maduro (conference host), Marcel Pociot, Peter Suhm, Yannick Kupferschmidt, Simon Hamp, Shane Rosenthal, Dan Harrin, Ryan Chandler, Tobias Petry, Leah Thompson, Luke Kuzmish, Wendell Adriel, and Daniel Coulbourne. The conference closed with a panel Q&A featuring Taylor Otwell, Joe Dixon, Jess Archer, and Joe Tannenbaum, hosted by Nuno Maduro.
Senior Laravel Developer and AI Architect with 10+ years in the trenches. Dewald writes about building resilient, cost-aware AI integrations and modernizing the Laravel developer workflow for the 2026 ecosystem.

