Laracon US 2026: The Full Rundown
Laracon US 2026 was packed. From framework quality-of-life improvements to infrastructure-level changes in Laravel Cloud, here is a structured breakdown of everything shipped.
Laravel Framework Updates
Image Manipulation
Laravel now ships a fluent, chainable image manipulation API for resizing, format conversion, device pixel ratio control, and direct browser output — no third-party library required.
Laravel LSP
The Laravel Language Server Protocol brings the autocomplete, route navigation, and inline documentation previously exclusive to the VS Code extension to any LSP-compatible editor: NeoVim, Zed, and Sublime Text.
Inertia DevTools
Inertia DevTools is a Chrome extension that gives you a dedicated panel showing every Inertia request, header, and hydrated prop — no more digging through the network tab.
CPX
CPX is PHP's answer to npx. Run any Composer package without adding it to your project:
cpx laravel/pint
You can alias commands, run local scripts with external dependencies, and even execute scripts from a GitHub Gist URL.
Artisan dev Command
The new artisan dev command replaces the composer dev / npx concurrently pattern. Register dev processes in your service provider, assign colors, and let packages like Reverb register their own processes automatically on install.
Head Tag API
The head tag API gives you a PHP-side, fluent interface for managing everything in your HTML <head>: Open Graph tags, canonical links, PWA metadata, and descriptions — set globally and overridden per route or view.
Blade Support in Pint
Laravel Pint now formats Blade templates with the same zero-config, opinionated style it already applies to PHP files.
Artisan Doctor
artisan doctor runs health checks on your app — APP_KEY, PHP version, required extensions, environment config — and auto-fixes what it can. Packages can register their own checks.
Refreshable Locks
Refreshable locks let long-running jobs call $lock->refresh() to extend a lock before it expires, avoiding both stale locks and duplicate work.
Debounced Jobs
Debounced jobs collapse multiple dispatches within a short window into a single execution — ideal for search index updates or any high-frequency write pattern.
Laravel AI SDK
- Human-in-the-Loop (HITL): The HITL API lets you intercept agent tool calls and approve, deny, or modify them before the agent acts.
- Filesystem tools: Agents can now read, write, and manage files natively.
Str::summarize(): Summarize any string via the cheapest available model with a single method call.- Multimodal embeddings: Generate embeddings for images and audio, not just text, with automatic caching.
- OpenAI-compatible providers: Point the SDK at any service implementing the OpenAI API shape.
Laravel Cloud
Scale-to-Zero Flex Compute
The rebuilt Flex compute wakes your entire stack — app, MySQL or Postgres database, and cache — in under 500 milliseconds, down from ~10 seconds. MySQL scale-to-zero is now supported alongside Postgres.
Managed Queues
Managed queues run on isolated compute, scale to zero when empty, support FIFO ordering, allow jobs up to one hour on the Pro class, and now wake idle workers in under one second.
Next.js and Nuxt Deployments
Laravel Cloud now deploys Next.js and Nuxt frontends from the same monorepo as your Laravel backend, with separate environment variables, scaling, and domains — on a single bill.
Secrets Manager
Define secrets once at the organization level, link them to environments, and Cloud injects them as environment variables at deploy time. Values are encrypted client-side and never shown again after saving.
Private Cloud: HIPAA Compliance
Private Cloud is now HIPAA-certified, joining SOC 2 Type II, GDPR, and PCI-DSS. Add-ons let Private Cloud customers install extra software (media libraries, headless browsers, monitoring agents) directly into the build image.
Key Takeaways
- Scale-to-zero now covers MySQL and wakes in under 500 ms
- Laravel LSP extends VS Code-quality tooling to NeoVim, Zed, and Sublime Text
- Managed queues scale to zero and support FIFO and long-running jobs
- The AI SDK HITL API puts a human checkpoint before any agent tool call
- CPX, Artisan
dev, and the package skeleton dramatically reduce project scaffolding time - Private Cloud is now HIPAA-compliant