daimakuai-ext / reporter
Exception reporter for laravel
v1.0.0
2018-08-26 02:26 UTC
Requires
- php: >=7.0.0
- jblv/daimakuai: >=1.0.0
- laravel/framework: 5.5.*
Requires (Dev)
- laravel/laravel: 5.*
- phpunit/phpunit: ~6.0
This package is not auto-updated.
Last update: 2024-10-27 05:20:18 UTC
README
This tool stores the exception information into the database and provides a developer-friendly web interface to view the exception information.
Screenshot
Installation
$ composer require daimakuai-ext/reporter -vvv
$ php artisan vendor:publish --tag=daimakuai-admin-reporter
$ php artisan migrate --path=vendor/daimakuai-ext/reporter/database/migrations
$ php artisan admin:import reporter
Open app/Exceptions/Handler.php
, call Reporter::report()
inside report
method:
<?php namespace App\Exceptions; use Jblv\Admin\Reporter\Reporter; use Exception; use Illuminate\Auth\AuthenticationException; use Illuminate\Validation\ValidationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; class Handler extends ExceptionHandler { ... public function report(Exception $exception) { if ($this->shouldReport($exception)) { Reporter::report($exception); } // parent::report($exception); } ... }
Open http://localhost/admin/exceptions
to view exceptions.
License
Licensed under The MIT License (MIT).