Filament Debugger
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
Installation
You can install the package via composer:
composer require stephenjude/filament-debugger
Run the setup command using
php artisan filament-debugger:install
This is the contents of the published config file:
return [
'debuggers' => [
'horizon',
'telescope'
],
'authorization' => false,
'permissions' => [
'horizon' => 'horizon.view',
'telescope' => 'telescope.view',
],
];
Debuggers
This package comes with first party Laravel packages for development and monitoring your Laravel application.
Laravel Telescope
Telescope provides insight into the requests coming into your application, exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, variable dumps, and more. Documentation.
Laravel Horizon
Horizon allows you to easily monitor key metrics of your queue system such as job throughput, runtime, and job failures. Documentation.
Usage
Now you can view the installed debuggers when you log in into your filament admin panel.
Screenshots:
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.