Files
crew_admin/app/Http/Middleware/EncryptCookies.php
Frank John Begornia d225ff22d4 initial commit
2019-10-29 19:29:28 +08:00

18 lines
300 B
PHP

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