Shift HTTP kernel and middleware

This commit is contained in:
Shift
2023-01-07 20:33:04 +00:00
parent 0f3ee8ab58
commit 0590f1a07a
4 changed files with 10 additions and 10 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 = [
//
];
}