定制 jeffersongoncalves/filament-queue-management 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

jeffersongoncalves/filament-queue-management

Composer 安装命令:

composer require jeffersongoncalves/filament-queue-management

包简介

A Filament plugin to manage Laravel's database queue tables (jobs, failed_jobs, job_batches) — monitor, retry and prune queued and failed jobs from your panel.

README 文档

README

Filament Queue Management

Filament Queue Management

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads License

A Filament plugin to manage Laravel's database-driver queue tables (jobs, failed_jobs, job_batches) directly from your panel. It is a Filament UI port of the Nova package kaiserkiwi/nova-queue-management, built on top of the framework-agnostic jeffersongoncalves/laravel-queue-management core (the queue models and the QueueManager service) and the shared jeffersongoncalves/filament-plugin-core.

Features

  • 📋 Monitor pending jobs (jobs table) and prune them individually or in bulk
  • ♻️ Retry, retry-all, forget and flush-all failed jobs (failed_jobs table)
  • 📦 Inspect job batches (job_batches table) read-only, including failed job ids and options
  • 🔎 Searchable, sortable tables with payload / exception viewers (pretty JSON)
  • 🧭 All three resources grouped under a configurable "Queue Management" navigation group
  • ⚙️ Fluent customisation of the navigation group label, sort, per-resource slugs and icons

Compatibility

Plugin Version Filament PHP Laravel
1.x ^3.0 ^8.2 ^10.0
2.x ^4.0 ^8.2 ^11.0
3.x ^5.0 ^8.3 ^12.0/^13.0

Installation

You can install the package via composer (the jeffersongoncalves/laravel-queue-management core is pulled in automatically):

composer require jeffersongoncalves/filament-queue-management:"^3.0"

You can publish the config file with:

php artisan vendor:publish --tag="filament-queue-management-config"

This plugin reads Laravel's standard jobs, failed_jobs and job_batches tables. Make sure your application uses the database queue driver (and the database / database-uuids failed job driver) and has run the queue migrations.

Usage

Register the plugin

use Filament\Panel;
use JeffersonGoncalves\Filament\QueueManagement\FilamentQueueManagementPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FilamentQueueManagementPlugin::make()
                ->navigationGroup('Queue Management')   // null => translated default label
                ->navigationSort(99)
                ->jobsSlug('jobs')
                ->failedJobsSlug('failed-jobs')
                ->jobBatchesSlug('job-batches')
                ->jobsNavigationIcon('heroicon-o-queue-list')
                ->failedJobsNavigationIcon('heroicon-o-exclamation-triangle')
                ->jobBatchesNavigationIcon('heroicon-o-rectangle-stack'),
        ]);
}

All fluent methods are optional and return $this for chaining. If you do not register the plugin, the three resources can also be discovered automatically through the package service provider, in which case configuration is read from the published config file.

Configuration

return [
    'navigation' => [
        'group' => null, // null => translated "Queue Management"
        'sort' => null,
    ],
    'resources' => [
        'jobs' => [
            'slug' => 'jobs',
            'navigation_icon' => 'heroicon-o-queue-list',
        ],
        'failed_jobs' => [
            'slug' => 'failed-jobs',
            'navigation_icon' => 'heroicon-o-exclamation-triangle',
        ],
        'job_batches' => [
            'slug' => 'job-batches',
            'navigation_icon' => 'heroicon-o-rectangle-stack',
        ],
    ],
];

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.

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-06-25

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固