saucy/dashboard is a Laravel package for this is my package dashboard.
It currently has 1 GitHub stars and 3.308 downloads on Packagist (latest version v1.3.3).
Install it with composer require saucy/dashboard.
Discover more Laravel packages by saucy
or browse all Laravel packages to compare alternatives.
Last updated
A monitoring dashboard for the Saucy event sourcing framework's projections. Provides a React-based UI to view projection status, activity logs, and manage projections (pause, resume, replay, trigger).
Install the package via composer:
composer require saucy/dashboard
Publish the frontend assets:
php artisan vendor:publish --tag="saucy-dashboard-assets"
Important: Re-run this command after updating the package to get the latest frontend build.
Optionally, publish the config file:
php artisan vendor:publish --tag="saucy-dashboard-config"
The published config file (config/saucy-dashboard.php):
return [
'password' => env('SAUCY_DASHBOARD_PASSWORD', null),
];
By default the dashboard is open to anyone. To require a password, add to your .env:
SAUCY_DASHBOARD_PASSWORD=your-secret-password
When set, visitors must enter the password on a login screen. The authenticated session is managed via Laravel's session driver.
Once installed, navigate to:
https://your-app.com/saucy-dashboard
The dashboard provides:
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.