Looking to hire Laravel developers? Try LaraJobs

bugphix-laravel maintained by bugphix

Description
Capture and monitor detailed error logs with nice dashboard and UI.
Author
Last update
2023/01/05 09:38 (dev-dependabot/npm_and_yarn/json5-1.0.2)
License
Links
Downloads
5 569

Comments
comments powered by Disqus

Requirements

Installation

$ composer require bugphix/bugphix-laravel

Publish config files

$ php artisan vendor:publish --tag=bugphix-config

Run artisan installer

$ php artisan bugphix:install

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

View admin dashboard

http://localhost:8080/bugphix/issues

For full documentation: https://bugphix-docs.netlify.com

License

MIT

Copyright (c) 2020, Jeric