dskripchenko/laravel-admin-health

Health-check dashboard for dskripchenko/laravel-admin — its own checkers, no dependency on spatie/laravel-health.

Maintainers

Package info

github.com/dskripchenko/laravel-admin-health

pkg:composer/dskripchenko/laravel-admin-health

Transparency log

Statistics

Installs: 11

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.4.0 2026-08-17 15:27 UTC

This package is auto-updated.

Last update: 2026-08-17 15:30:25 UTC


README

🌐 English · Русский · Deutsch · 中文

Health-checks for the admin panel. Its own implementation, with no dependency on spatie/laravel-health. Built-in checks: database connection, cache, queue depth and disk space, plus a closure check and a contract for your own.

The state reaches you rather than waiting to be looked up: a dot in the top bar the moment something fails, a counts card on the dashboard, and the full history in its own section.

A sister-pack for dskripchenko/laravel-admin.

Packagist License

Install

composer require dskripchenko/laravel-admin-health
php artisan migrate

Nothing runs the checks by itself — add the runner to the scheduler:

// routes/console.php
Schedule::command('admin:health:run')->everyMinute();
Schedule::command('admin:health:cleanup')->daily();

The plugin auto-registers via Laravel package discovery. To publish the config:

php artisan vendor:publish --tag=admin-health-config

Documentation

License

MIT © Denis Skripchenko