imgnd/queue-monitor

Laravel Queued Jobs Monitor for Filament (filament/filament)

Installs: 105

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

Type:package

pkg:composer/imgnd/queue-monitor

0.4.4 2025-09-02 12:22 UTC

This package is not auto-updated.

Last update: 2025-10-14 10:54:38 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()
        ]);
}