imgnd/queue-monitor

Laravel Queued Jobs Monitor for Filament (filament/filament)

0.4.3 2024-12-18 09:55 UTC

This package is not auto-updated.

Last update: 2025-03-12 10:14:35 UTC


README

Latest Stable Version Total Downloads License php

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