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
18 lines
294 B
PHP
Executable File
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 = [
|
|
//
|
|
];
|
|
}
|