PHPackages                             dissnik/moonshine-queue-dashboard - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. dissnik/moonshine-queue-dashboard

ActiveLibrary

dissnik/moonshine-queue-dashboard
=================================

Queue monitoring dashboard for MoonShine

2.0.1(1mo ago)1345↑17.9%MITPHPPHP ^8.2

Since Nov 28Pushed 1mo agoCompare

[ Source](https://github.com/DissNik/moonshine-queue-dashboard)[ Packagist](https://packagist.org/packages/dissnik/moonshine-queue-dashboard)[ RSS](/packages/dissnik-moonshine-queue-dashboard/feed)WikiDiscussions 2x Synced 1mo ago

READMEChangelog (6)Dependencies (1)Versions (9)Used By (0)

Queue Dashboard for [MoonShine Laravel admin panel](https://moonshine-laravel.com)
==================================================================================

[](#queue-dashboard-for-moonshine-laravel-admin-panel)

This package provides a convenient dashboard for monitoring and managing failed jobs in your Laravel application directly from the Moonshine admin panel.

   ![Queue Dashboard](./art/dashboard.png)---

Compatibility
-------------

[](#compatibility)

MoonShineMoonshine Queue Dashboard&gt;= v3.0&gt;= v1.0.0&gt;= v4.0&gt;= v2.0.0Features
--------

[](#features)

- 📊 **Queue Overview**: View key metrics for all queues.
- 🔄 **Task Management**: View, resubmit, and delete failed tasks.
- 🎯 **Driver Support**: Works with Redis, Database, Sync, and other Laravel queue drivers.

Requirements
------------

[](#requirements)

- PHP 8.1 or higher
- Laravel 10.x or higher
- Moonshine 3.x or higher

Installation
------------

[](#installation)

Install the package via Composer:

```
composer require dissnik/moonshine-queue-dashboard
```

Usage
-----

[](#usage)

The dashboard will automatically appear in your MoonShine admin panel if `auto_menu` is enabled in config.

You can also manually add the dashboard to your resource:

```
use DissNik\MoonShineQueueDashboard\Pages\QueueDashboardPage;

public function menu(): array
{
    return [
        // ... other menu items
        QueueDashboardPage::make(),
    ];
}
```

Publish
-------

[](#publish)

### Configuration file

[](#configuration-file)

```
php artisan vendor:publish --tag=moonshine-queue-dashboard-config
```

```
return [
    'auto_menu' => true,         // Automatically add to MoonShine menu
    'queues' => ['default'],     // Queues to monitor
    'auto_refresh' => false,     // Enable automatic data refresh
    'refresh_interval' => 10000, // Refresh interval in milliseconds
];
```

### Language files

[](#language-files)

```
php artisan vendor:publish --tag=moonshine-queue-dashboard-lang
```

### Assets files

[](#assets-files)

```
php artisan vendor:publish --tag=moonshine-queue-dashboard-assets
```

### All files

[](#all-files)

```
php artisan vendor:publish --tag=moonshine-queue-dashboard
```

Components
----------

[](#components)

Package components can be used on other sites or resources.

### Failed Jobs

[](#failed-jobs)

```
use DissNik\MoonShineQueueDashboard\Components\FailedJobs;

FailedJobs::make();
```

   ![Failed Jobs](./art/failed_jobs.png)### Queue Metrics

[](#queue-metrics)

```
use DissNik\MoonShineQueueDashboard\Components\QueueMetrics;

QueueMetrics::make();
```

   ![Queue Metrics](./art/queue_metrics.png)Tip

To refresh metrics use Fragment with name 'queue\_metrics'

```
use DissNik\MoonShineQueueDashboard\Components\QueueMetrics;
use MoonShine\Laravel\Components\Fragment;

Fragment::make([
    QueueMetrics::make(),
])
    ->name('queue_metrics')
```

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance96

Actively maintained with recent releases

Popularity19

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~18 days

Recently: every ~28 days

Total

7

Last Release

49d ago

Major Versions

1.x-dev → 2.0.02026-01-02

PHP version history (2 changes)1.0.0PHP ^8.1|^8.2|^8.3

2.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/b5d1e94a88268180fc0b8bde67d22affa1b7c6727ca89300b9956263b16d3adf?d=identicon)[DissNik](/maintainers/DissNik)

---

Top Contributors

[![DissNik](https://avatars.githubusercontent.com/u/12373059?v=4)](https://github.com/DissNik "DissNik (16 commits)")

### Embed Badge

![Health badge](/badges/dissnik-moonshine-queue-dashboard/health.svg)

```
[![Health](https://phpackages.com/badges/dissnik-moonshine-queue-dashboard/health.svg)](https://phpackages.com/packages/dissnik-moonshine-queue-dashboard)
```

###  Alternatives

[yurizoom/moonshine-log-viewer

Log viewer for MoonShine

137.8k](/packages/yurizoom-moonshine-log-viewer)[yurizoom/moonshine-media-manager

Media manager for MoonShine

101.1k](/packages/yurizoom-moonshine-media-manager)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
