dskripchenko / laravel-admin-health
Health-check dashboard for dskripchenko/laravel-admin — its own checkers, no dependency on spatie/laravel-health.
Package info
github.com/dskripchenko/laravel-admin-health
pkg:composer/dskripchenko/laravel-admin-health
Requires
- php: ^8.2
- dskripchenko/laravel-admin: ^1.30
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.18
- orchestra/testbench: ^9.0 || ^10.0 || ^11.0
- phpstan/phpstan: ^2.0
- phpunit/phpunit: ^11.0 || ^12.0
This package is auto-updated.
Last update: 2026-08-17 15:30:25 UTC
README
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.
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