Laravel Exception Recorder and Notifier Package
Published on by Eric L. Barnes
LERN (Laravel Exception Recorder and Notifier) is a package that will record exceptions into a database and will send you a notification.
It currently supports notifications via Email, Pushover, Slack, Hipchat, Fleephook, and Flowdock. Once installed implementation is added to app/Exceptions/Handler.php
file:
public function report(Exception $e){ if ($this->shouldReport($e)) { LERN::handle($e); //Record and Notify the Exception /* OR... LERN::record($e); //Record the Exception to the database LERN::notify($e); //Notify the Exception */ } return parent::report($e);}
Eric is the creator of Laravel News and has been covering Laravel since 2012.