Big News from Laravel ;)
Taylor Otwell presented some news about Laravel during the Laracon US 2024 in Dallas. They will be available by the end of the year and are:
Laravel Cloud
Laravel would take the next step by offering every developer an all-in-one Cloud deployment solution. For more info, visit https://cloud.laravel.com.
VS Code Official Extension
Many developers use VS Code, so Laravel will release an official extension to speed up the process of writing Laravel code in that editor. It will be available for free in the following months.
Concurrency
The next Laravel 11 update should include improvements related to the concurrency in the Laravel projects. For example, simultaneously execute multiple operations across PHP processes:
$data = Concurrency::run([
fn () => Data::get(),
fn () => Data::get(),
fn () => Data::get(),
fn () => Data::get(),
fn () => Data::get(),
]);
Or deferring them:
$data = Concurrency::defer([
fn () => Data::get(),
fn () => Data::get(),
fn () => Data::get(),
fn () => Data::get(),
fn () => Data::get(),
]);
These confirm that Laravel aspires to become a game-changer in the framework universe, building a solid ecosystem around the open-source project and introducing updated, out-of-the-box, enterprise-ready solutions. Clap your hands for Laravel 👏