PHPackages                             carloeusebi/filament-exceptions-optimized - 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. carloeusebi/filament-exceptions-optimized

ActiveLibrary[Admin Panels](/categories/admin)

carloeusebi/filament-exceptions-optimized
=========================================

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

2.1.4(1y ago)1153MITPHPPHP ^8.1|^8.2

Since Sep 4Pushed 1y agoCompare

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

READMEChangelog (2)Dependencies (10)Versions (26)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/346fbf187afb5a0f0c9df87435c75f75a07a8e7c675fdc06e848f8921fb0cc7f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f46494c414d454e542d332e782d4542423330343f7374796c653d666f722d7468652d6261646765) ](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)

Exception Viewer
================

[](#exception-viewer)

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 bezhansalleh/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:

```
