• File: EncryptCookies.php
  • Full Path: /var/www/amparoapi/app/Http/Middleware/EncryptCookies.php
  • Date Modified: 10/05/2021 7:55 PM
  • File size: 311 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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 = [
        //
    ];
}