Cleanup routing mechanisms

This commit is contained in:
Dane Everitt
2017-04-01 21:01:10 -04:00
parent 0a95d97d7f
commit d80c59aad3
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',
];
}