ctrlpanel/app/Http/Middleware/TrimStrings.php

20 lines
381 B
PHP
Raw Normal View History

2021-06-05 09:26:32 +00:00
<?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.
*
2023-01-05 17:02:33 +00:00
* @var array<int, string>
2021-06-05 09:26:32 +00:00
*/
protected $except = [
2023-01-05 17:02:33 +00:00
'current_password',
2021-06-05 09:26:32 +00:00
'password',
'password_confirmation',
];
}