Files
app
Console
Exceptions
Http
Controllers
Middleware
EncryptCookies.php
RedirectIfAuthenticated.php
TrimStrings.php
TrustProxies.php
VerifyCsrfToken.php
Kernel.php
Providers
User.php
bootstrap
config
database
public
resources
routes
storage
tests
.env.example
.gitattributes
.gitignore
artisan
composer.json
composer.lock
package.json
phpunit.xml
server.php
webpack.mix.js
yarn.lock
web/app/Http/Middleware/EncryptCookies.php
2017-11-12 15:09:38 +01:00

18 lines
294 B
PHP
Executable File

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