Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/./uploads/../../app/Jobs/.././Http/Middleware
الملفات الموجودة في هذا الـ Path:
.
..
Authenticate.php
EmailVerify.php
EncryptCookies.php
PreventRequestsDuringMaintenance.php
RedirectIfAuthenticated.php
TrimStrings.php
TrustHosts.php
TrustProxies.php
ValidateSignature.php
VerifyCsrfToken.php

مشاهدة ملف: TrimStrings.php

<?php

namespace App\Http\Middleware;

use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;

class TrimStrings extends Middleware
{
    /**
     * The names of the attributes that should not be trimmed.
     *
     * @var array<int, string>
     */
    protected $except = [
        'current_password',
        'password',
        'password_confirmation',
    ];
}