This commit is contained in:
Olusesan Ameye
2020-09-07 10:33:03 -04:00
parent c2d2897ad8
commit 4c6d4d98f0
401 changed files with 47976 additions and 1 deletions
@@ -0,0 +1,18 @@
<?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
*/
protected $except = [
'password',
'password_confirmation',
];
}