Cleanup routing mechanisms

This commit is contained in:
Dane Everitt 2017-04-01 21:01:10 -04:00
parent 0a95d97d7f
commit d80c59aad3
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
13 changed files with 468 additions and 879 deletions

View file

@ -0,0 +1,18 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\TrimStrings as BaseTrimmer;
class TrimStrings extends BaseTrimmer
{
/**
* The names of the attributes that should not be trimmed.
*
* @var array
*/
protected $except = [
'password',
'password_confirmation',
];
}