• Exception Viewer
  • Exception Viewer
  • Exception Viewer

Exception Viewer

Plugin information

by Bezhan Salleh

Admin panel Developer tool

A Simple & Beautiful Exception Viewer for FilamentPHP's Admin Panel

Support

#exception-viewer on Discord

Views

4349

License

MIT

Documentation

Filament Exception Viewer

A Simple & Beautiful Exception Viewer for FilamentPHP's Admin Panel

Installation

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);
}
});
 
...
}

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits