Laracon US 2026: All Laravel &amp; Cloud Announcements | 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)    Everything Announced at Laracon US 2026: Laravel Framework, Cloud &amp; AI Updates        On this page       1. [  Laracon US 2026: The Full Rundown ](#laracon-us-2026-the-full-rundown)
2. [  Laravel Framework Updates ](#laravel-framework-updates)
3. [  Image Manipulation ](#image-manipulation)
4. [  Laravel LSP ](#laravel-lsp)
5. [  Inertia DevTools ](#inertia-devtools)
6. [  CPX ](#cpx)
7. [  Artisan dev Command ](#artisan-codedevcode-command)
8. [  Head Tag API ](#head-tag-api)
9. [  Blade Support in Pint ](#blade-support-in-pint)
10. [  Artisan Doctor ](#artisan-doctor)
11. [  Refreshable Locks ](#refreshable-locks)
12. [  Debounced Jobs ](#debounced-jobs)
13. [  Laravel AI SDK ](#laravel-ai-sdk)
14. [  Laravel Cloud ](#laravel-cloud)
15. [  Scale-to-Zero Flex Compute ](#scale-to-zero-flex-compute)
16. [  Managed Queues ](#managed-queues)
17. [  Next.js and Nuxt Deployments ](#nextjs-and-nuxt-deployments)
18. [  Secrets Manager ](#secrets-manager)
19. [  Private Cloud: HIPAA Compliance ](#private-cloud-hipaa-compliance)
20. [  Key Takeaways ](#key-takeaways)

  ![Everything Announced at Laracon US 2026: Laravel Framework, Cloud & AI Updates](https://cdn.msaied.com/485/8c49e044ff45a776167065579e1c93ac.png)

 [  Laravel ](https://msaied.com/articles?category=laravel) [  AI ](https://msaied.com/articles?category=ai)  #Laracon 2026   #Laravel Cloud   #Laravel AI SDK   #Laravel LSP   #Inertia DevTools   #Laravel Framework  

 Everything Announced at Laracon US 2026: Laravel Framework, Cloud &amp; AI Updates 
====================================================================================

     29 Jul 2026      4 min read    ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MJ.jpg)  Mohamed Said  

       Table of contents

  20 sections  

1. [  01   Laracon US 2026: The Full Rundown  ](#laracon-us-2026-the-full-rundown)
2. [  02   Laravel Framework Updates  ](#laravel-framework-updates)
3. [  03   Image Manipulation  ](#image-manipulation)
4. [  04   Laravel LSP  ](#laravel-lsp)
5. [  05   Inertia DevTools  ](#inertia-devtools)
6. [  06   CPX  ](#cpx)
7. [  07   Artisan dev Command  ](#artisan-codedevcode-command)
8. [  08   Head Tag API  ](#head-tag-api)
9. [  09   Blade Support in Pint  ](#blade-support-in-pint)
10. [  10   Artisan Doctor  ](#artisan-doctor)
11. [  11   Refreshable Locks  ](#refreshable-locks)
12. [  12   Debounced Jobs  ](#debounced-jobs)
13. [  13   Laravel AI SDK  ](#laravel-ai-sdk)
14. [  14   Laravel Cloud  ](#laravel-cloud)
15. [  15   Scale-to-Zero Flex Compute  ](#scale-to-zero-flex-compute)
16. [  16   Managed Queues  ](#managed-queues)
17. [  17   Next.js and Nuxt Deployments  ](#nextjs-and-nuxt-deployments)
18. [  18   Secrets Manager  ](#secrets-manager)
19. [  19   Private Cloud: HIPAA Compliance  ](#private-cloud-hipaa-compliance)
20. [  20   Key Takeaways  ](#key-takeaways)

       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](https://laravel.com/docs/images) for resizing, format conversion, device pixel ratio control, and direct browser output — no third-party library required.

### Laravel LSP

The [Laravel Language Server Protocol](https://github.com/laravel/lsp) 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](https://inertiajs.com/docs/v3/advanced/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](https://github.com/laravel/cpx) is PHP's answer to `npx`. Run any Composer package without adding it to your project:

```bash
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`](https://laravel.com/docs/artisan#the-dev-command) 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](https://github.com/laravel/head) gives you a PHP-side, fluent interface for managing everything in your HTML ``: Open Graph tags, canonical links, PWA metadata, and descriptions — set globally and overridden per route or view.

### Blade Support in Pint

[Laravel Pint](https://github.com/laravel/pint) now formats Blade templates with the same zero-config, opinionated style it already applies to PHP files.

### Artisan Doctor

[`artisan doctor`](https://github.com/laravel/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](https://laravel.com/docs/cache#refreshing-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](https://laravel.com/docs/queues#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](https://laravel.com/docs/ai-sdk#human-tool-approval) 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](https://laravel.com/blog/managed-queues-autoscaling-queue-workers-on-laravel-cloud) 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](https://laravel.com/blog/deploy-nextjs-and-nuxt-apps-on-laravel-cloud) 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

---

*Source: [Everything we announced at Laracon US 2026](https://laravel.com/blog/everything-we-announced-at-laracon-us-2026)*

 Found this useful?

          [  ](https://twitter.com/intent/tweet?url=https%3A%2F%2Fmsaied.com%2Farticles%2Feverything-announced-at-laracon-us-2026-laravel-framework-cloud-ai-updates&text=Everything+Announced+at+Laracon+US+2026%3A+Laravel+Framework%2C+Cloud+%26+AI+Updates) [  ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fmsaied.com%2Farticles%2Feverything-announced-at-laracon-us-2026-laravel-framework-cloud-ai-updates) 

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

  3 questions  

     Q01  What is Laravel LSP and which editors does it support?        Laravel LSP is a Language Server Protocol implementation that brings autocomplete for routes, views, and config — previously only available in the VS Code extension — to any LSP-compatible editor, including NeoVim, Zed, and Sublime Text. 

      Q02  How fast does Laravel Cloud's scale-to-zero Flex compute wake up?        The rebuilt Flex compute wakes the entire stack — application, database (MySQL or Postgres), and cache — in under 500 milliseconds, roughly 20 times faster than the previous ~10-second cold start. 

      Q03  What does the Human-in-the-Loop (HITL) API add to the Laravel AI SDK?        The HITL API lets you intercept specific tool calls made by an AI agent and require a human decision — approve, deny, or modify — before the agent proceeds, preventing unintended actions from running automatically. 

  Continue reading

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

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

 [ ![Practical RAG in Laravel: pgvector, Embeddings, and Retrieval Pipelines](https://cdn.msaied.com/487/2db17c4f7927d4a229a4786c03e7b67b.png) laravel ai pgvector 

### Practical RAG in Laravel: pgvector, Embeddings, and Retrieval Pipelines

Build a production-ready retrieval-augmented generation pipeline in Laravel using pgvector, OpenAI embeddings,...

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

 30 Jul 2026     4 min read  

  Read    

 ](https://msaied.com/articles/practical-rag-in-laravel-pgvector-embeddings-and-retrieval-pipelines-2) [ ![Laravel Octane + FrankenPHP: Persistent Services, Boot-Once Singletons, and Safe State](https://cdn.msaied.com/486/7a50572cb8b282ae36063a9213f55ed3.png) laravel octane frankenphp 

### Laravel Octane + FrankenPHP: Persistent Services, Boot-Once Singletons, and Safe State

Running Laravel under FrankenPHP with Octane means your service container lives across requests. Learn which s...

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

 30 Jul 2026     4 min read  

  Read    

 ](https://msaied.com/articles/laravel-octane-frankenphp-persistent-services-boot-once-singletons-and-safe-state) [ ![Laravel Queues at Scale: Backpressure, Dead-Letter Patterns, and Job Observability](https://cdn.msaied.com/484/7ee0710bfc61c6ff7667dd4f60a8c5bd.png) laravel queues observability 

### Laravel Queues at Scale: Backpressure, Dead-Letter Patterns, and Job Observability

Beyond basic queue workers: learn how to implement backpressure signals, dead-letter queues, and structured jo...

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

 29 Jul 2026     3 min read  

  Read    

 ](https://msaied.com/articles/laravel-queues-at-scale-backpressure-dead-letter-patterns-and-job-observability) 

   [  ![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)
