https://github.com/laravel-admin-extensions/reporter
This tool stores the exception information into the database and provides a developer-friendly web interface to view the exception information.
https://github.com/laravel-admin-extensions/reporter
exception laravel laravel-admin report
Last synced: 10 days ago
JSON representation
This tool stores the exception information into the database and provides a developer-friendly web interface to view the exception information.
- Host: GitHub
- URL: https://github.com/laravel-admin-extensions/reporter
- Owner: laravel-admin-extensions
- License: mit
- Created: 2017-07-21T03:02:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-25T08:58:02.000Z (over 3 years ago)
- Last Synced: 2024-12-12T17:45:28.371Z (5 months ago)
- Topics: exception, laravel, laravel-admin, report
- Language: PHP
- Homepage: http://laravel-admin.org/
- Size: 27.3 KB
- Stars: 58
- Watchers: 3
- Forks: 25
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-laravel-admin - reporter - 异常信息存储及查看工具 (扩展包 / 工具类扩展包)
README
Exception reporter for laravel-admin
======================This tool stores the exception information into the database and provides a developer-friendly web interface to view the exception information.
[](https://styleci.io/repos/97900053)
[](https://packagist.org/packages/laravel-admin-ext/reporter)
[](https://packagist.org/packages/laravel-admin-ext/reporter)
[]()## Screenshot

## Installation
```
$ composer require laravel-admin-ext/reporter -vvv$ php artisan vendor:publish --tag=laravel-admin-reporter
$ php artisan migrate --path=vendor/laravel-admin-ext/reporter/database/migrations
$ php artisan admin:import reporter
```Open `app/Exceptions/Handler.php`, call `Reporter::report()` inside `report` method:
```php
shouldReport($exception)) {
Reporter::report($exception);
}// parent::report($exception);
}
...}
```Open `http://localhost/admin/exceptions` to view exceptions.
License
------------
Licensed under [The MIT License (MIT)](LICENSE).