imgnd / queue-monitor
Laravel Queued Jobs Monitor for Filament (filament/filament)
0.4.4
2025-09-02 12:22 UTC
Requires
- php: >=8.1
- filament/filament: *
README
Laravel Queued Jobs Monitor for Filament (filament/filament)
Installation
Install the package via composer:
composer require imgnd/queue-monitor
Configuration
The global plugin config can be published using the command below:
php artisan vendor:publish --tag="queue-monitor-config"
Use in Filament Panels
You can register the plugin to your Panel configuration. This will register the plugin's resources.
For example in your app/Providers/Filament/AdminPanelProvider.php
file:
<?php
use Imagined\QueueMonitor\QueueMonitorPlugin;
...
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
QueueMonitorPlugin::make()
]);
}