Laravel Exception Notify (Current: Support only TELEGRAM) (by k_tith)
Enjoying this tool? Buy me a beer 🍺
git clone https://github.com/ktith/laravel-exception-notifier.git
composer require ktith/laravel-exception-notifier
Simple used register event
Note: For laravel 11 you can register event in bootstrap/app.php
<?php
use Ktith\Laravelexceptionnotifier\Events\ExceptionNotifier;
// for Laravel 11 bootstrap/app.php
// notify to notifire laravel 11
$exceptions->render(function (Exception $e){
event(new ExceptionNotifier($e));
});
Note: For all these version you can register event in Handler.php
<?php
use Ktith\Laravelexceptionnotifier\Events\ExceptionNotifier;
// notify to notifire by regiser
public function render($request, Throwable $exception) {
event(new ExceptionNotifier($e));
return parent::render($request, $exception);
}
If you come across any issues please report them here.
Thank you for considering contributing to the this project! Please feel free to make any pull requests, or e-mail me a feature request you would like to see in the future to Tith khem at titkhem167@gmail.com.
If you discover a security vulnerability within this project, please send an e-mail to Tith khem at titkhem167@gmail.com, or create a pull request if possible. All security vulnerabilities will be promptly addressed.