cblink/bearychat-exception

This package's canonical repository appears to be gone and the package has been frozen as a result.

1.0.1 2018-05-18 02:40 UTC

This package is not auto-updated.

Last update: 2023-01-21 20:30:30 UTC


README

laravel exception notify through bearychat

Install

composer require cblink/bearychat-exception

Add the service provider to the providers array in config/app.php:

ElfSundae\BearyChat\Laravel\ServiceProvider::class,

publish the config file:

php artisan vendor:publish --tag=bearychat

Usage


use Cblink\BearychatException\BearychatExceptionHelper;

class Handler extends ExceptionHandler
{
  // ...
  
    public function report(Exception $exception)
    {
        BearychatExceptionHelper::notify($exception);
        parent::report($exception);
    }

}

more usage see in https://github.com/ElfSundae/laravel-bearychat

file