Skip to content

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

License

Notifications You must be signed in to change notification settings

shuvroroy/filament-exceptions

 
 

Repository files navigation

filament-exceptions-art

FILAMENT 8.x Packagist Tests Passing Code Style Passing Downloads

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

        ...
    }

Testing

composer test

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

License

The MIT License (MIT). Please see License File for more information.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 65.4%
  • CSS 17.4%
  • Blade 16.3%
  • JavaScript 0.9%