Interface-Admin/app/Http/Middleware/EncryptCookies.php
Massimo Di Lullo 6c8e491733 Laravel Set-up
2019-09-22 14:44:11 -04:00

18 lines
294 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
*/
protected $except = [
//
];
}