bugphix-laravel-sdk maintained by hpsweb
Description
Capture and monitor detailed error logs with nice dashboard and UI.
Author
Last update
2020/05/16 22:34
(dev-master)
License
Downloads
25
Tags
Requirements
Installation
$ composer require hpsweb/bugphix-laravel-sdk
Application usage
edit: /app/Exceptions/Handler.php
public function report(Exception $exception)
{
if (app()->bound('bugphix') && $this->shouldReport($exception)) {
app('bugphix')->catchError($exception);
}
parent::report($exception);
}
Test Command
$ php artisan bugphix:test