Initial commit of laravel files.

This commit is contained in:
Krzysztof Płaczek
2022-08-05 11:37:12 +02:00
parent b74795c3a2
commit 3a6a2252a3
82 changed files with 11222 additions and 24 deletions

View File

@@ -0,0 +1,19 @@
<?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',
];
}