Files
einundzwanzig-portal/app/Http/Middleware/EncryptCookies.php
HolgerHatGarKeineNode 726e6f18d7 fixes #7
2023-06-01 13:23:14 +02:00

19 lines
331 B
PHP

<?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 = [
'lang',
'country',
];
}