Laravel Cloud is here! Zero-config managed infrastructure for Laravel apps. Deploy now.

Blade Component Slot Attributes in Laravel 8.56

Published on by

Blade Component Slot Attributes in Laravel 8.56 image

Never Miss a Laravel Release 🚀

Sign up and get an email with each new Laravel release

The Laravel team released 8.56 with a collections firstOrFail() method, Blade component slot attributes, default conditional validation rules, and the latest changes in the 8.x branch:

Validation Assertion Improvements

Dwight Watson contributed validation assertion improvements to assertInvalid that brings quality-of-life improvements:

// Generically assert there are errors
$response->assertInvalid();
 
// Array was required previously
// Now you can pass a string key
$response->assertInvalid(['name', 'email']);
 
$response->assertInvalid('email');

Blade Component Slot Attributes

Dan Harrin contributed the ability for blade component slots to have their own attributes:

<x-card class="shadow-sm">
<x-slot name="heading" class="font-bold">
Heading
</x-slot>
 
Content
 
<x-slot name="footer" class="text-sm">
Footer
</x-slot>
</x-card>

To learn more, check out the code and discussion in Pull Request #38372.

Collections "firstOrFail()" Method

@powellblyth contributed a firstOrFail() method to collections (and lazy collections) which makes things a little more fluent:

// Without `firstOrFail()`
$collection = new Collection([
['name' => 'foo'],
['name' => 'foo'],
['name' => 'bar'],
]);
 
// Slightly obscure code and hard to scan
if ($collection->where('name', 'fish')->count() === 0){
$collection->add('fish');
}
 
$this->doSomethingWith($collection);

Using firstOrFail() a missing value will throw an exception:

$collection = new Collection([
['name' => 'foo'],
['name' => 'foo'],
['name' => 'bar'],
]);
 
try {
$collection->where('name', 'fish')->firstOrFail()
}
// An Exception? This must be important, I'm glad I scanned it
catch (ItemNotFoundException){
// Ensure user has 'fish' in their collection
$collection->add('fish');
}
 
$this->doSomethingWith($collection);

Default Rules for Conditional Validation

@bastien-phi contributed default rules when a condition is false instead of having to write the inverse conditional rule:

return [
'email' => [
Rule::when($this->someComplexTest(), ['required']),
Rule::when(!$this->someComplexTest(), ['nullable']),
],
];

Now you can pass the default rule as the third argument:

return [
'email' => [
Rule::when(
$this->someComplexTest(),
['required'],
// When the condition is `false`...
['nullable']
),
],
];

Get Full Request URL Without Query Params

Ali Saleem contributed a fullUrlWithoutQuery() request method that allows you to remove specific parameters from the query string:

// Example: https://example.com/?color=red&shape=square&size=small
 
// Removes `color`
request()->fullUrlWithoutQuery('color');
// https://example.com/?shape=square&size=small
 
// Removes `color` and `size`
request()->fullUrlWithoutQuery(['color', 'size']);
// https://example.com/?shape=square

Release Notes

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

v8.56.0

Added

  • Added firstOrFail to Illuminate\Support\Collections and Illuminate\Support\LazyCollections (#38420)
  • Support route caching with trashed bindings (c3ec2f2)
  • Allow only keys directly on safe in FormRequest (5e4ded8)
  • Added default rules in conditional rules (#38450)
  • Added fullUrlWithoutQuery method to Request (#38482)
  • Added --implicit (and -i) option to make:rule (#38480)
  • Added colon port support in serve command host option (#38522)

Changed

  • Testing: Access component properties from the return value of $this->component() (#38396, 42a71fd)
  • Update InteractsWithInput::bearerToken() (#38426)
  • Minor improvements to validation assertions API (#38422)
  • Blade component slot attributes (#38372)
  • Convenient methods for rate limiting (2f93c49)
  • Run event:clear on optimize:clear (a61b24c2)
  • Remove unnecessary double MAC for AEAD ciphers (#38475)
  • Adds Response authorization to Form Requests (#38489)
  • Make TestResponse::getCookie public so it can be directly used in tests (#38524)
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
Bacancy

Outsource a dedicated Laravel developer for $3,200/month. With over a decade of experience in Laravel development, we deliver fast, high-quality, and cost-effective solutions at affordable rates.

Visit Bacancy
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
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
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
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
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
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 →
Laravel 12.44 Adds HTTP Client afterResponse() Callbacks image

Laravel 12.44 Adds HTTP Client afterResponse() Callbacks

Read article
Handle Nested Data Structures in PHP with the Data Block Package image

Handle Nested Data Structures in PHP with the Data Block Package

Read article
Detect and Clean Up Unchanged Vendor Files with Laravel Vendor Cleanup image

Detect and Clean Up Unchanged Vendor Files with Laravel Vendor Cleanup

Read article
Seamless PropelAuth Integration in Laravel with Earhart image

Seamless PropelAuth Integration in Laravel with Earhart

Read article
Laravel API Route image

Laravel API Route

Read article
Laravel News 2025 Recap image

Laravel News 2025 Recap

Read article