This commit is contained in:
TiclemFR
2023-12-29 15:42:55 +01:00
parent e42da70aca
commit 9d79d7c0c6
79 changed files with 11232 additions and 24 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
class PreventRequestsDuringMaintenance extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array<int, string>
*/
protected $except = [
//
];
}