Skip to content

Capture and monitor detailed error logs with nice dashboard and UI

License

Notifications You must be signed in to change notification settings

IHOS/bugphix-laravel

 
 

Repository files navigation

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

About

Capture and monitor detailed error logs with nice dashboard and UI

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 30.5%
  • CSS 29.4%
  • PHP 16.6%
  • SCSS 15.0%
  • Vue 5.7%
  • JavaScript 2.3%
  • Blade 0.5%