PHPackages                             sirajunnasihin/filament-exceptions - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. sirajunnasihin/filament-exceptions

ActiveLibrary[Admin Panels](/categories/admin)

sirajunnasihin/filament-exceptions
==================================

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

2.1.2(2y ago)08MITPHPPHP ^8.1|^8.2

Since May 19Pushed 2y agoCompare

[ Source](https://github.com/Sirajunnasihin/filament-exceptions)[ Packagist](https://packagist.org/packages/sirajunnasihin/filament-exceptions)[ Docs](https://github.com/bezhansalleh/filament-exceptions)[ GitHub Sponsors](https://github.com/bezhanSalleh)[ RSS](/packages/sirajunnasihin-filament-exceptions/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (10)Versions (2)Used By (0)

[![filament-exceptions-art](https://user-images.githubusercontent.com/10007504/188786069-e93f01a1-d910-4888-a29a-28eea4ee0458.jpg)](https://github.com/bezhanSalleh/filament-exceptions) [ ![FILAMENT 8.x](https://camo.githubusercontent.com/c98f15eb6bb59ce4fc768808e21fd46a07d238312928102f3d7ad4bed7c31f70/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f46494c414d454e542d322e782d4542423330343f7374796c653d666f722d7468652d6261646765) ](https://filamentadmin.com/docs/2.x/admin/installation) [ ![Packagist](https://camo.githubusercontent.com/7eb97402e7b8e0e4d67974967ec68d902c2dd995c5def73571b9de64238d542a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f62657a68616e73616c6c65682f66696c616d656e742d657863657074696f6e732e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d7061636b6167697374) ](https://packagist.org/packages/bezhansalleh/filament-exceptions) [ ![Tests Passing](https://camo.githubusercontent.com/84579d404355b4c715f3a05bca973c9512252af49ac9ea65983198c16dda3221/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f62657a68616e73616c6c65682f66696c616d656e742d657863657074696f6e732f72756e2d74657374732e796d6c3f7374796c653d666f722d7468652d6261646765266c6f676f3d676974687562266c6162656c3d7465737473) ](https://github.com/bezhansalleh/filament-exceptions/actions?query=workflow%3Arun-tests+branch%3Amain) [ ![Code Style Passing](https://camo.githubusercontent.com/5380c63b21c1ee7f62f763ee66671c01b77e69d79bfd7d210e68524dcc62e0b4/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f62657a68616e73616c6c65682f66696c616d656e742d657863657074696f6e732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f7374796c653d666f722d7468652d6261646765266c6f676f3d676974687562266c6162656c3d636f64652532307374796c65) ](https://github.com/bezhansalleh/filament-exceptions/actions?query=workflow%3A)[ ![Downloads](https://camo.githubusercontent.com/e346026cdbed7fd103fb6c9e6db400236356edad016afc13a9451e394a470da4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f62657a68616e73616c6c65682f66696c616d656e742d657863657074696f6e732e7376673f7374796c653d666f722d7468652d6261646765) ](https://packagist.org/packages/bezhansalleh/filament-exceptions)

Filament Exception Viewer
=========================

[](#filament-exception-viewer)

THIS IS FORK FROM [bezhansalleh/filament-exceptions](https://github.com/bezhanSalleh/filament-exceptions)

I only update access filter to protect navigation register on not super-admin access

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

- For FilamentPHP 2.x use version 1.x

Installation
------------

[](#installation)

1. You can install the package via composer:

```
composer require sirajunnasihin/filament-exceptions
```

2. Publish and run the migration via:

```
php artisan exceptions:install
```

3. Register the plugin for the Filament Panel

```
public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            \BezhanSalleh\FilamentExceptions\FilamentExceptionsPlugin::make()
        ]);
}
```

4. Activate the plugin by editing your App's Exception Handler as follow:

```
