Looking to hire Laravel developers? Try LaraJobs

bugphix-laravel-sdk maintained by hpsweb

Description
Capture and monitor detailed error logs with nice dashboard and UI.
Last update
2020/05/16 22:34 (dev-master)
License
Downloads
25

Comments
comments powered by Disqus

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