Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Browse all series

What's New in Laravel 5.6

Laravel 5.6 is upon us! While it's true that this release isn't quite as flashy, there are still a number of incredibly useful new additions and updates. Let's review them together.

Progress

Series Info

Episodes
8
Run Time
37m
Difficulty
Intermediate
Last Updated
Apr 24, 2018
Version
Latest

Series Episodes

  1. Episodes (8)
    1. Broadcast Channel Classes

      Laravel, for a while now, has included functionality for broadcasting server-side events over a WebSocket connection to the client-side. Often, as part of this process, it will prove necessary to authorize the current user. "Do they have permission to access this private channel or not?" Authorizations such as these are registered within your routes/channels.php file.
    2. Collision Reporting

      Laravel 5.6 ships with drastically improved error reporting, when interacting with the framework through the console. In this lesson, we'll compare and contrast the exception output you'll see for an Artisan command in versions 5.5 and 5.6.
    3. Eloquent Date Casting

      When casting Eloquent attributes, you can now easily declare the format for your date columns. Maybe a particular date field, when converted to JSON, should be rendered as "January 1st" or "1/1/18". No problem.
    4. Improved Logging... Even to Slack

      Logging has been vastly improved in Laravel 5.6. You'll find a new config/logging.php file in a fresh install of Laravel. Here, you may configure your desired default logging channel, or even specify a stack of channels. Maybe basic informational logs should be sent to the standard laravel.log file, while mission critical logs should be sent to Slack. Easy!
    5. Dynamic Rate Limiting

      For a while now, Laravel has offered the ability to throttle incoming requests. However, as part of Laravel 5.6, you can now dynamically configure the number of allowed attempts.
    6. Logout Other Devices

      Laravel now includes the useful logoutOtherDevices method on the SessionGuard class (auth()->logoutOtherDevices()). This means, with ease, you can invalidate all other sessions for a user's account. One use-case for this is ensuring that multiple people cannot log in and access the same account simultaneously. For a second example, maybe a user accidentally signed into their account on a library computer, but forgot to logout. No problem; you can offer the functionality to click a button and instantly invalidate that library session.
    7. API Controller Generator

      The useful make:controller Artisan command has been upgraded to support API action generation, via the new --api flag. This is effectively identical to --resource, however, the create and edit actions are naturally excluded.

Continue Learning