TCVis/app/Http/Middleware/EncryptCookies.php

18 lines
294 B
PHP
Raw Normal View History

2018-12-21 12:45:08 +00:00
<?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 = [
//
];
}