mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 12:51:10 -05:00
14 lines
263 B
PHP
14 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
|
|
|
|
class TrimStrings extends Middleware
|
|
{
|
|
protected $except = [
|
|
'current_password',
|
|
'password',
|
|
'password_confirmation',
|
|
];
|
|
} |