2017-25 © Pedro Peláez
 

library exception-alert

Laravel 5 alert on exception

image

bebetter/exception-alert

Laravel 5 alert on exception

  • Monday, April 18, 2016
  • by bebetter
  • Repository
  • 2 Watchers
  • 1 Stars
  • 280 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Exception Alert

Installation

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); 
}
//...

License

The MIT License (MIT). Please see LICENSE for more information., (*6)

The Versions

18/04 2016

dev-master

9999999-dev

Laravel 5 alert on exception

  Sources   Download

MIT

The Requires

 

by Deepak Kumar

exception error