laravel-admin-reporter / reporter
Exception reporter for laravel
v1.0.5
2023-06-28 18:49 UTC
Requires
- php: >=8.0
- ext-json: *
- encore/laravel-admin: >=1.5
- laravel/framework: >=10.0
Requires (Dev)
- laravel/laravel: >=10.0
- phpunit/phpunit: ^9.0
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 laravel-admin-reporter/reporter -vvv
$ php artisan vendor:publish --tag=laravel-admin-reporter
$ php artisan migrate --path=vendor/laravel-admin-reporter/reporter/database/migrations
$ php artisan admin:import reporter
Open app/Exceptions/Handler.php
, call Reporter::report()
inside report
method:
<?php namespace App\Exceptions; use Encore\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).