A Simple & Beautiful Exception Viewer for FilamentPHP's Admin Panel
You can install the package via composer:
composer require bezhansalleh/filament-exceptions
Publish and run the migration via:
php artisan exceptions:install
Activate the plugin by editing your App's Exception Handler as follow:
<?php
namespace App\Exceptions;
use BezhanSalleh\FilamentExceptions\FilamentExceptions;
class Handler extends ExceptionHandler
{
...
public function register()
{
$this->reportable(function (Throwable $e) {
if ($this->shouldReport($e)) {
FilamentExceptions::report($e);
}
});
...
}
By default, we set label to Exception under System group in navigation, you can easily customize it by:
Publishing config files
php artisan vendor:publish --tag filament-exceptions-config
then update navigation property to your preferences
<?php
return [
'navigation' => [
'label' => 'Exceptions',
'group' => 'System',
'icon' => 'heroicon-o-chip',
]
];
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.