Initial commit

This commit is contained in:
Deon George
2016-10-13 15:56:01 +11:00
commit a42f06ef7e
81 changed files with 6378 additions and 0 deletions

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 = [
//
];
}