Files
aso/app/Http/Middleware/EncryptCookies.php
Linksehat Staging Server ce024c2bcd merge
2023-05-08 08:50:15 +07:00

18 lines
307 B
PHP
Executable File

<?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
class EncryptCookies extends Middleware
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array<int, string>
*/
protected $except = [
//
];
}