Initial repository

This commit is contained in:
PovilasKorop
2021-12-05 12:57:24 +02:00
commit 0a20e3dee6
84 changed files with 11195 additions and 0 deletions
+17
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 = [
//
];
}