Blade Component Slot Attributes in Laravel 8.56

News

August 26th, 2021

Blade Component Slot Attributes in Laravel 8.56

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)

Filed in:

Paul Redmond

Full stack web developer. Author of Lumen Programming Guide and Docker for PHP Developers.