dev-master
9999999-devLaravel 5 alert on exception
MIT
The Requires
- php >=5.4.0
- illuminate/support 5.*
by Deepak Kumar
exception error
Wallogit.com
2017 © Pedro Peláez
Laravel 5 alert on exception
You can install the package through Composer., (*1)
composer require bebetter/exception-alert
You must install this service provider. Make this the very first provider in list., (*2)
// config/app.php
'providers' => [
// make this very first provider
'Bebetter\ExceptionAlert\ServiceProvider',
//...
];
Then publish the config file of the package using artisan., (*3)
php artisan vendor:publish --provider="Bebetter\ExceptionAlert\ServiceProvider"
And put receiver email to it., (*4)
Add to your Exception Handler's (/app/Exceptions/Handler.php by default) report method these line:, (*5)
//...
public function report(Exception $e)
{
\ExceptionAlert::send($e);
//...
return parent::report($e);
}
//...
The MIT License (MIT). Please see LICENSE for more information., (*6)
Laravel 5 alert on exception
MIT
exception error