cblink/bearychat-exception

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Installs: 7 791

Dependents: 0

Suggesters: 0

Security: 0

Stars: 26

Watchers: 2

Forks: 2

Open Issues: 0

pkg:composer/cblink/bearychat-exception

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