JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "EncryptCookies.php"

Full Path: /home/markqprx/iniasli.pro/app/Http/Middleware/EncryptCookies.php
File size: 484 bytes
MIME-type: text/x-php
Charset: utf-8

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

    public function isDisabled($name)
    {
        if ($name === slugify(config('app.name')).'_activeWorkspace') {
            return true;
        }
        return parent::isDisabled($name);
    }
}