#tradewind:init

This commit is contained in:
2021-06-07 14:04:44 +08:00
commit 15b344e983
83 changed files with 11163 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?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 = [
//
];
}