Git inicializacia

This commit is contained in:
Jaroslav Drzik
2019-11-15 11:03:55 +01:00
commit e2f7d8b5c6
93 changed files with 8193 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 = [
//
];
}