laravel base files

This commit is contained in:
Nabeel Shahzad
2017-06-08 13:28:26 -05:00
parent 26167adae8
commit 106d6a6798
96 changed files with 9856 additions and 1 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 = [
//
];
}