LaravelPackages.net
Acme Inc.
Toggle sidebar
bugphix/bugphix-laravel

Capture and monitor detailed error logs with nice dashboard and UI.

5.569
117
v1.5.4
About bugphix/bugphix-laravel

bugphix/bugphix-laravel is a Laravel package for capture and monitor detailed error logs with nice dashboard and ui.. It currently has 117 GitHub stars and 5.569 downloads on Packagist (latest version v1.5.4). Install it with composer require bugphix/bugphix-laravel. Discover more Laravel packages by bugphix or browse all Laravel packages to compare alternatives.

Last updated

Bugphix logo

Build Status MIT License GitHub last commit

Capture and monitor detailed error logs with nice dashboard and UI



Dashboard gif

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

Star History Chart