diff options
| author | Calvin Morrison <calvin@fastmailteam.com> | 2022-08-02 11:30:56 -0400 |
|---|---|---|
| committer | Calvin Morrison <calvin@fastmailteam.com> | 2022-08-02 11:30:56 -0400 |
| commit | 2466d29fe2319c1057cca7cf1e1977451088276e (patch) | |
| tree | 23a9ada5dec1f8c8e106be100d3a0d75fcc0125e /app/Http/Controllers/Controller.php | |
initial commit of laravel
Diffstat (limited to 'app/Http/Controllers/Controller.php')
| -rw-r--r-- | app/Http/Controllers/Controller.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..a0a2a8a --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,13 @@ +<?php + +namespace App\Http\Controllers; + +use Illuminate\Foundation\Auth\Access\AuthorizesRequests; +use Illuminate\Foundation\Bus\DispatchesJobs; +use Illuminate\Foundation\Validation\ValidatesRequests; +use Illuminate\Routing\Controller as BaseController; + +class Controller extends BaseController +{ + use AuthorizesRequests, DispatchesJobs, ValidatesRequests; +} |
