Does not record exceptions laravel 5.4
Closed this issue · 3 comments
romaque commented
I installed the library in laravel 5.4, when an error occurs does not register in inspector Exceptions
ilvalerione commented
Hi @romaque thank you for your report!
Laravel 5.4 doesn't have "package autodiscovery" feature, so after install the composer package you need to attach the InspectorServiceProvider and facade in your config/app.php
'providers' => [
/*
* Laravel Framework Service Providers...
*/
...,
\Inspector\Laravel\InspectorServiceProvider::class,
'aliases' => [
...,
'Inspector' => \Inspector\Laravel\Facades\Inspector::class,
I hope this can help you
romaque commented
Hi @ilvalerione thank you so much solved my problem
ilvalerione commented
You're welcome! ;)