Cut PHP Code Review Time & Bugs into Half with CodeRabbit

Highlights from Taylor Otwell's Laracon US Keynote 2024

Last updated on by

Taylor Otwell gave his keynote address at the end of day one of Laracon US 2024, with many ambitious projects, such as an official VS code extension, many cool Laravel framework features like defer(), a demo of Inertia v2 features, and Laravel Cloud.

Let's take a glance at what Taylor shared in his keynote this year:

Official Laravel VS Code Extension

Taylor announced an official VS Code Extension for Laravel, which will be available later this fall (2024). With the new extension you will have everything you need to have an incredible experience developing web applications with Laravel and VS Code.

Taylor invited Joe Tannenbaum to the stage during his keynote to demonstrate the upcoming VS Code Extension, which was an awesome sight to see. Here are the high-level features shared during the Keynote:

  • The goal is to "reveal as much intelligence about your project as possible, manifested in four different ways:
  • Autocomplete for Eloquent, services, etc.
  • Clickable
  • Hover - information at a glance with "quick fixes"
  • Diagnostics - warn you inline if you've made a mistake
  • VS Code Test Explorer integration

Autocomplete for app(), route(), config(), env(), trans(), and more:

Autocomplete for available app() services, hover info about the service, with the ability to jump straight to the source of where the service is registered, was one of my favorite features Joe showed us:

The text explorer integration will let you run tests via a play button in the file explorer, giving you inline error messages for failures. You will also have access to full test output at the bottom of VS Code:

New Open-source Features for the Laravel Framework

Temporary file URL with the local filesystem driver

Container attributes allow you to set parameters on classes loaded via the container:

The Config attribute isn't the only attribute that will be available, others include DB('driver') for resolving a database connection, CurrentUser to get the currently authenticated user, and more:

public function __construct(
#[CurrentUser] User $user,
#[DB('mysql')] Connection $connection,
#[Config('services.github.token')]
string $githubToken
) {
// ...
}

You can also create your own container attributes for a package or Laravel app by implementing a simple interface. Laravel 11 already has these container attributes available, which you can use in your application right now!

Eloquent Chaperone

You can avoid gnarly N+1 queries by instructing Eloquent to link the related models back to the parent after the relationship query has run using the new ->chaperone() method on a relationship:

New Defer Helper

There's a new way to push work to the background using the defer() helper

With the defer helper, you can push code execution into the background, which is executed after the response is already sent to the browser:

public function index()
{
defer(fn() => Some:backgroundTask());
 
// ....
return view('example');
}

There are other areas of the framework that take advantage of defer, such as this Cache::flexible() method, which can serve a stale cache between 5-10 seconds, but then defer() will update the cache in the background to keep it fresh:

New Concurrency Facade

The new Concurrency Facade can run multiple callbacks simultaneously without slowing down the request:

Laravel Inertia v2.0

Taylor demonstrated six key features coming to Inertia 2.0, but this part of the keynote is best to see live. The new features coming to Inertia 2 are mind-blowingly good, and include async requests, deferred props, prefetching, and more.

I loved the prefetching feature, which will either preload links on mount or hover, making for a near-instant, snappy user experience.

One More Thing - Laravel Cloud ☁️

Taylor ended the keynote by unveiling Laravel Cloud, the Future of Shipping. The keynote was the first public demo of Laravel's new app platform for deploying Laravel apps instantly. During the demo, Taylor created a project and had a Laravel app up and running in 25 seconds 🤯

You can get on the Laravel Cloud waiting list on cloud.laravel.com, and watch the commercial video here:

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Tinkerwell

Enjoy coding and debugging in an editor designed for fast feedback and quick iterations. It's like a shell for your application – but with multi-line editing, code completion, and more.

Visit Tinkerwell
Curotec logo

Curotec

World class Laravel experts with GenAI dev skills. LATAM-based, embedded engineers that ship fast, communicate clearly, and elevate your product. No bloat, no BS.

Curotec
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $2500/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Laravel Forge logo

Laravel Forge

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Forge
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
Cut PHP Code Review Time & Bugs into Half with CodeRabbit logo

Cut PHP Code Review Time & Bugs into Half with CodeRabbit

CodeRabbit is an AI-powered code review tool that specializes in PHP and Laravel, running PHPStan and offering automated PR analysis, security checks, and custom review features while remaining free for open-source projects.

Cut PHP Code Review Time & Bugs into Half with CodeRabbit
Join the Mastering Laravel community logo

Join the Mastering Laravel community

Connect with experienced developers in a friendly, noise-free environment. Get insights, share ideas, and find support for your coding challenges. Join us today and elevate your Laravel skills!

Join the Mastering Laravel community
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
Lunar: Laravel E-Commerce logo

Lunar: Laravel E-Commerce

E-Commerce for Laravel. An open-source package that brings the power of modern headless e-commerce functionality to Laravel.

Lunar: Laravel E-Commerce
LaraJobs logo

LaraJobs

The official Laravel job board

LaraJobs
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit

The latest

View all →
Streamline Conditional Logic with Laravel's Fluent Conditionable Trait image

Streamline Conditional Logic with Laravel's Fluent Conditionable Trait

Read article
Sublime Text Releases Update With Support for Right Sidebar image

Sublime Text Releases Update With Support for Right Sidebar

Read article
Enhance Email Validation with Laravel's Fluent Email Rule Object image

Enhance Email Validation with Laravel's Fluent Email Rule Object

Read article
Locale-aware Number Parsing in Laravel 12.15 image

Locale-aware Number Parsing in Laravel 12.15

Read article
Handle Fluent Values as Arrays with Laravel's array() Method image

Handle Fluent Values as Arrays with Laravel's array() Method

Read article
Chargebee Starter Kit for Billing in Laravel image

Chargebee Starter Kit for Billing in Laravel

Read article