initial laravel commit

This commit is contained in:
Russ Long
2019-10-29 14:59:29 -04:00
parent df55e9f9b1
commit 0f9d04c7e3
87 changed files with 8258 additions and 5 deletions

View File

@ -0,0 +1,18 @@
<?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
*/
protected $except = [
'password',
'password_confirmation',
];
}