Database implementation of app maintenance mode to replace default file maintenance
friendsofcat/laravel-db-maintenance is a Laravel package for database implementation of app maintenance mode to replace default file maintenance.
It currently has 6 GitHub stars and 32.116 downloads on Packagist (latest version 2.0.0).
Install it with composer require friendsofcat/laravel-db-maintenance.
Discover more Laravel packages by friendsofcat
or browse all Laravel packages to compare alternatives.
Last updated
A Database driven replacement for Laravel's default file based maintenance mode. This allows easy maintenance mode across multiple server environments.
composer require friendsofcat/laravel-db-maintenance
The service provider will be auto discovered. This will replace the default up and down commands
as well as register a new CheckDbMaintenance middleware globally. So no need to manually add this to
Kernel $middleware. However, the default \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class
can be removed (optional).