Laravel 9.48 Released

Published on by

Laravel 9.48 Released image

Never Miss a Laravel Release 🚀

Sign up and get an email with each new Laravel release

The Laravel team released 9.48 this week with conditional fragment helpers, HTTP configuration options for Symfony mailers, a new DB schema helper, and more:

DB Schema helper to toggle foreign key constraints

Patrick Hesselberg contributed a withoutForeignKeyConstraints Schema method to conveniently disable foreign key constraints while managing a DB schema:

// Before
Schema::disableForeignKeyConstraints();
Schema::dropIfExists('table1');
Schema::dropIfExists('table2');
Schema::enableForeignKeyConstraints();
 
// After
Schema::withoutForeignKeyConstraints(function () {
Schema::dropIfExists('table1');
Schema::dropIfExists('table2');
});

New fragment helpers

Arko Elsenaar contributed a fragmentIf() method to return a fragment of a view conditionally. Sending a fragment is useful when sending a partial HTML view over the wire in XHR requests, for example:

// Before
if (request()->hasHeader('HX-Request')) {
return view('products.index')->fragment('products-list');
}
 
return view('products.index');
 
// After
return view('products.index')
->fragmentIf(
request()->hasHeader('HX-Request'),
'products-list'
);

Arko also contributed a fragments() method to return multiple fragments conveniently:

// Before using concatenation
view('welcome')->fragment('fragment1') . view('welcome')->fragment('fragment2');
 
// After
view('welcome')->fragments(['fragment1', 'fragment2']);

Building on Arko's first PR, the fragmentIf() has an accompanying fragmentsIf() method to conditionally render an array of fragments:

view('welcome')
->fragmentsIf(
request()->hasHeader('HX-Request'),
['fragment1', 'fragment2']
);

Increment each query builder method

Iman contributed an incrementEach() method to increment multiple columns with a single query atomically:

DB::table('products')->where('id', 2)->incrementEach([
'in_store' => 2,
'in_stock' => 3,
'total' => 5,
], ['updated_at' => now()]);

Drop an index when modifying a column

Hafez Divandari contributed the ability to drop an index by its conventional name when modifying a column by passing false to unique:

$table->string('name')->unique(false)->change();

Configure custom HTTP client options for mailers

Dries Vints contributed the configuration of custom HTTP client options for Symfony's Postmark and Mailgun mailers:

'mailgun' => [
'transport' => 'mailgun',
'client' => [
'timeout' => 7.5 // Seconds
],
],

You can find the configuration options referenced in the Symfony Docs.

402 status code exception view

Zep Fietje contributed an exception view for the nonstandard 402 status code:

Currently no error page exists for exceptions with an HTTP status code of 402 Payment Required.

Even though it's a nonstandard response status code , it's used by multiple large companies to indicate functionality limited due to a payment being required.

HTTP client "notFound()" response helper

Erik Gaal contributed a notFound() HTTP client response helper that provides a convenience around checking for a 404 response:

$response = Http::get('https://laravel.com');
 
// Checking the status code
if ($response->status() === 404) {
doSomething();
}
 
// New helper method
if ($response->notFound()) {
doSomething();
}

Release Notes

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

v9.48.0

Added

  • Added Illuminate/Database/Schema/Builder::withoutForeignKeyConstraints() (#45601)
  • Added fragments() \ fragmentIf() \ fragmentsIf() methods to Illuminate/View/View.php class (#45656, #45669)
  • Added incrementEach() and decrementEach() to Illuminate/Database/Query/Builder (#45577)
  • Added ability to drop an index when modifying a column (#45513)
  • Allow to set HTTP client for mailers (#45684)
  • Added 402 exception view (#45682)
  • Added notFound() helper to Http Client response (#45681)

Fixed

Changed

  • Ignore whitespaces/newlines when finding relations in model:show command (#45608)
  • Fail queued job with a string messag (#45625)
  • Allow fake() helper in unit tests (#45624)
  • allow egulias/email-validator v4 (#45649)
  • Force countBy method in EloquentCollection to return base collection (#45663)
  • Allow for the collection of stubs to be published (#45653)
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
Laravel Code Review

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

Visit Laravel Code Review
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $9500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
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
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
Tinkerwell logo

Tinkerwell

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

Tinkerwell
Laravel Cloud logo

Laravel Cloud

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

Laravel Cloud
Acquaint Softtech logo

Acquaint Softtech

Acquaint Softtech offers AI-ready Laravel developers who onboard in 48 hours at $3000/Month with no lengthy sales process and a 100 percent money-back guarantee.

Acquaint Softtech
PhpStorm logo

PhpStorm

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

PhpStorm
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 →
Typed Translation Accessors in Laravel 13.15.0 image

Typed Translation Accessors in Laravel 13.15.0

Read article
Refresh Your Laravel Database Without Dropping Every Table image

Refresh Your Laravel Database Without Dropping Every Table

Read article
JSON Schema Deserialization in Laravel 13.14 image

JSON Schema Deserialization in Laravel 13.14

Read article
Generate Short, URL-Safe IDs From Numbers With Sqids image

Generate Short, URL-Safe IDs From Numbers With Sqids

Read article
Scheduler List: A Web Dashboard for Laravel's Scheduled Tasks image

Scheduler List: A Web Dashboard for Laravel's Scheduled Tasks

Read article
Community Laravel Extension for Zed image

Community Laravel Extension for Zed

Read article