старая структура laravel, упоминается в Kernel, может по умолчанию шифровать все куки

This commit is contained in:
vasya
2026-03-22 20:10:42 +03:00
parent 6a0d4cf96e
commit c9a2f09b35
@@ -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 = [
//
];
}