initial Commit

This commit is contained in:
chrosey
2017-05-31 18:52:16 +02:00
commit ebb2728c18
78 changed files with 6294 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?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 = [
//
];
}