1. Go to this page and download the library: Download brickx/maintenance-switch library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use Brickx\MaintenanceSwitch\MaintenanceSwitchPlugin;
...
public function panel(Panel $panel) : Panel
{
return $panel
->plugins([
MaintenanceSwitchPlugin::make(),
]);
}
declare(strict_types=1);
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
use Illuminate\Foundation\Http\MaintenanceModeBypassCookie;
use Illuminate\Http\RedirectResponse;
class PreventRequestsDuringMaintenance extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array
*/
protected $except = [];
protected function bypassResponse(string $secret): RedirectResponse
{
// Optional: redirect to the Filament dashboard route when a secret is present, but of course, you can redirect to any URL you want.
return redirect(route('filament.admin.pages.dashboard'))->withCookie(
MaintenanceModeBypassCookie::create($secret)
);
}
}
use App\Http\Middleware\PreventRequestsDuringMaintenance;
use Illuminate\Support\Facades\Route;
// added the middleware but only to this group, the Filament routes are unaffected
Route::middleware([PreventRequestsDuringMaintenance::class])->group(function () {
Route::get('/', function () {
return view('welcome');
});
});