项目初始化

This commit is contained in:
kuaifan
2021-05-29 15:00:48 +08:00
commit e38f2ee2b6
99 changed files with 6284 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 = [
//
];
}