The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

Asset Prefetching Strategies with Vite in Laravel 11.21

Last updated on by

Asset Prefetching Strategies with Vite in Laravel 11.21 image

Never Miss a Laravel Release 🚀

Sign up and get an email with each new Laravel release

The Laravel team released v11.21 this week, which includes asset prefetching strategies for Vite, a convenience method to force-destroy models with soft deletes, testing helper updates, and more.

Eager Asset Prefetching Strategies for Vite

Tim MacDonald contributed the ability to prefetch assets generated by Vite eagerly:

This PR adds the ability for applications to eagerly prefetch JavaScript and CSS chunks generated by Vite. The goal is to reduce the network delay / costs when navigating throughout a SPA front-end.

Applications built with Vite will often use "code splitting". This technique splits the JavaScript (and CSS) into smaller "chunks". When you load any given page, only the chunks required to render that page are loaded which leads to faster load times for applications. For example, when you land on the homepage you do not pay the cost of also downloading and parsing the admin dashboard JavaScript.

To configure prefetching, you could add one of the following methods to the boot() method of a service provider:

// In a service provider `boot()` method:
 
Vite::useWaterfallPrefetching(concurrency: 10);
Vite::useAggressivePrefetching();
Vite::usePrefetchStrategy('waterfall', ['concurrency' => 1]);

See Pull Request #52462 for usage details, including videos of assets based on the types of prefetching strategies.

Make expectsChoice() Assertion More Intuitive with Associative Arrays

Jess Archer made updates to the expectsChoice() assertion method when passing an associative array:

$this->choice('Choose an option', [
'one' => 'One',
'two' => 'Two',
'three' => 'Three',
]);

When using expectsChoice(), you would need to write the expectation as follows:

// Before
$this->expectsChoice('Choose an option', 'one', [
'one',
'two',
'three',
'One',
'Two',
'Three',
]);

After updating to Laravel 11.21, you can now do the following instead:

// After
$this->expectsChoice('Choose an option', 'one', [
'one' => 'One',
'two' => 'Two',
'three' => 'Three',
]);

See Pull Request #52408 for more details.

Force Destroying a Soft-deleted Model

Jason McCreary contributed a forceDestroy() convenience method to remove a record while using the SoftDeletes trait:

// Before
$comment = Comment::find(1);
$comment->forceDelete();
 
// After
Comment::forceDestroy(1);
 
// Destroy multiple records
// Also, `forceDestroy()` returns an int count of destroyed records:
$count = Comment::forceDestroy([1, 2]);

Add countBetween() to AssertableJson

Borys Żmuda contributed a between() method to the AssertableJson class, which asserts that items are either greater than or equal to the minimum, or less than or equal to the maximum value:

$response->assertJson(fn (AssertableJson $json) => $json
->countBetween(10, 30)
->etc(),
);

Get the Stream Response from Laravel’s HTTP Client

Einar Hansen contributed a resource() method for the HTTP client’s Response class, which allows you to directly obtain a PHP stream resource from the response body:

// Before
use GuzzleHttp\Psr7\StreamWrapper;
 
$response = Http::get($imageUrl);
Storage::disk('s3')->writeStream(
'thumbnail.png',
StreamWrapper::getResource($response->toPsrResponse()->getBody()),
);
 
// After
$response = Http::get($imageUrl);
Storage::disk('s3')->writeStream('thumbnail.png', $response->resource());

See Pull Request #52412 for more examples and implementation details.

Add withoutHeaders() Test Helper

Milwad Khosravi contributed a withoutHeaders() method to skip headers during a test request. It was already possible to remove headers individually, and this update allows removing an array of headers in one call:

// Before:
$this
->withoutHeader('name')
->withoutHeader('foo')
->from('previous/url');
 
// After:
$this
->withoutHeaders(['name', 'foo'])
->from('previous/url');

Release notes

You can see the complete list of new features and updates below and the diff between 11.20.0 and 11.21.0 on GitHub. The following release notes are directly from the changelog:

v11.21.0

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 $3200/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Tinkerwell logo

Tinkerwell

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

Tinkerwell
Get expert guidance in a few days with a Laravel code review logo

Get expert guidance in a few days with a Laravel code review

Expert code review! Get clear, practical feedback from two Laravel devs with 10+ years of experience helping teams build better apps.

Get expert guidance in a few days with a Laravel code review
PhpStorm logo

PhpStorm

The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

PhpStorm
Laravel Cloud logo

Laravel Cloud

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

Laravel Cloud
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
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing
Lucky Media logo

Lucky Media

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

Lucky Media
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 →
Install Laravel Package Guidelines and Skills in Boost image

Install Laravel Package Guidelines and Skills in Boost

Read article
Bagisto Visual: Theme Framework with Visual Editor for Laravel E-commerce image

Bagisto Visual: Theme Framework with Visual Editor for Laravel E-commerce

Read article
Clawdbot Rebrands to Moltbot After Trademark Request From Anthropic image

Clawdbot Rebrands to Moltbot After Trademark Request From Anthropic

Read article
Automate Laravel Herd Worktrees with This Claude Code Skill image

Automate Laravel Herd Worktrees with This Claude Code Skill

Read article
Laravel Boost v2.0 Released with Skills Support image

Laravel Boost v2.0 Released with Skills Support

Read article
Laravel Debugbar v4.0.0 is released image

Laravel Debugbar v4.0.0 is released

Read article