What’s New in Laravel 6: Ignition and Flare
Time to read: 3 minutes
Laravel 6.0 is released, and as a new major version, there are plenty of fun new features for us to play with. The release notes give us all the highlights, but as part of a recent stream, I decided to take a look at one of the more exciting additions, the new error handler, Ignition.
Ignition
Ignition replaces Whoops as the default error handler in Laravel 6, but it works on older Laravel applications going back to version 5.5. The impressive thing about Ignition is because it's designed from the ground up to handle Laravel's specific errors, it can make suggestions on how to resolve errors, and even automatically fix common problems for us.
If we deliberately add a typo in our blade template name, then Ignition realises this and suggests the fix for us in the green panel.
Even smarter is the fact that Ignition can automatically fix some common problems that it can detect. Removing the application key from our .env
file is detected, and along with telling us the solution, Ignition offers to fix it for us too.
As well as the problem definition and suggested fixes, we get everything expected from an error handler - a full stack trace, information about the request and the server, but we also get a lot of Laravel specific information. Ignition tells us which route was hit and consequently which controller and action. It also displays which view template was rendered if any, and which middlewares have run.
We also get some beneficial debug information. Any logging or debug dumps done handling the request are visible and so are any database queries that have run. All in all you get a massive amount of information to help you diagnose the problem quickly and easily.
A nice touch that I find very useful is the ability to click on any line in the stack trace, and if you're using PhpStorm, it opens that file and line right in the editor. This is going to save so much time and energy.
On its own, Ignition is a great new error handler for Laravel, and it can only improve as the community contributes more common problems and solutions. It's also extensible, with several first-party and community extensions already available.
Flare
It doesn't stop there. Facade, the company behind this new open-source error handler have also created a paid SaaS product called Flare, which complements its functionality. You can tell Ignition to marshal all your errors to the Flare web application so that all the errors are visible in one place.
Setting it up is straightforward enough, you have to add some extra information to Laravel's config, and away we go. Once Flare is set up, we can use an Artisan command to check that it's working and send a test event to the Flare application.
We can see that our test exception reaches Flare correctly, but now, if we refresh our original error page with the misnamed view template, that reaches Flare too, and we get all the original error information we got from Ignition.
While this might not sound so remarkable, it's designed with production in mind so that you can see any errors that are happening in your live application but with all of the data you'd get from Ignition in your development environment. We can see how this works locally by putting Laravel into production mode. To do that we set the APP_ENV
key to production
and turn the APP_DEBUG
to false
in the .env
config file.
Now, when we hit the same page that was erroring, we see a nicely formatted 500 page which doesn't reveal anything about your code or what caused the error to our users.
The error still gets sent to Flare, which means that when your users are reporting a problem, you can find out exactly what went wrong quickly and easily. Because Ignition records the logged-in user's information validating it's the correct error is pretty simple too.
It's always an excellent idea to keep your log files as empty as possible in production so that you can find errors quickly and easily. Making sure you fix any warning and deprecation messages in your logs is fundamental to running a healthy production system where errors can be detected quickly and dealt with efficiently. Ignition and Flare take this to the next level and make the handling of errors in both development and production a breeze. Kudos to the team at Facade and all the contributors for a remarkable effort.
If you’re running Laravel 6.0 and using Ignition or if you’ve dropped it into your older Laravel project, I’d love to know what you think. Tweet at me or leave a comment and give me your opinions on Laravel’s new error handler.
I can’t wait to see what you build.
Related Posts
Related Resources
Twilio Docs
From APIs to SDKs to sample apps
API reference documentation, SDKs, helper libraries, quickstarts, and tutorials for your language and platform.
Resource Center
The latest ebooks, industry reports, and webinars
Learn from customer engagement experts to improve your own communication.
Ahoy
Twilio's developer community hub
Best practices, code samples, and inspiration to build communications and digital engagement experiences.