News

A New Laravel Blade Error Directive comes to Laravel 5.8.13

Published
A New Laravel Blade Error Directive comes to Laravel 5.8.13 image

Release updates

Never miss a Laravel release

Get an email whenever a new Laravel release lands.

Laravel 5.8.13 was released yesterday with a new @error Blade directive and a revert of the “in” and “not in” query builder feature added in Laravel 5.8.12.

Laravel Blade Error Directive

First, a new Blade @error directive was added by Caleb Porzio:

// Before
@if ($errors->has('email'))
<span>{{ $errors->first('email') }}</span>
@endif
 
// After:
@error('email')
<span>{{ $message }}</span>
@enderror

Custom Doctrine DBAL Types

Next, it’s now possible to register custom Doctrine DBAL types in the schema builder. Check out PR #28214 for more details.

This release reverted the in and not in query builder operators introduced in Laravel 5.8.12 because of an issue with wherePivot(). See commit 04a547ee for further details.

Users should upgrade from 5.8.12 to 5.8.13 to avoid the potential issues introduced by the new operators in 5.8.12.

You can see the full list of fixes below, and the whole diff between 5.8.12 and 5.8.13 on GitHub. The full release notes for Laravel 5.8 are available in the GitHub 5.8 changelog.

v5.8.13

Added

  • Added @error blade directive (#28062)
  • Added the ability to register custom Doctrine DBAL types in the schema builder (#28214, 91a6afe)

Fixed

Reverted

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

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

Visit Laravel Cloud

The latest

View all →
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article
Statamic Mailables Viewer Previews Laravel Emails in the Control Panel image

Statamic Mailables Viewer Previews Laravel Emails in the Control Panel

Read article
Laravel Tackle: Run an AI Coding Agent in Your Laravel App image

Laravel Tackle: Run an AI Coding Agent in Your Laravel App

Read article
Queue::forward(): Reroute Laravel Queues in One Place image

Queue::forward(): Reroute Laravel Queues in One Place

Read article
Laravel Read-Through Filesystem: Lazy Storage Migration image

Laravel Read-Through Filesystem: Lazy Storage Migration

Read article