kamilcraft-api/app/Http/Middleware/TrimStrings.php
Kamil Niemczycki d118793e01
Cleaning (#1)
* Sanctum removed

* Unused middleware classes removed

* Changed default email - Seeder

* Models updated

* Config .env is now smaller

* Not used, so not used - Providers

* Clearing your router of comments
2022-05-19 13:22:51 +02:00

19 lines
292 B
PHP

<?php
declare(strict_types=1);
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
class TrimStrings extends Middleware
{
protected $except = [
'current_password',
'password',
'password_confirmation',
];
}