source: app/Http/Controllers/Controller.php@ dfae77e

Last change on this file since dfae77e was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 22 months ago
  • Initial commit;
  • Property mode set to 100644
File size: 361 bytes
Line 
1<?php
2
3namespace App\Http\Controllers;
4
5use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
6use Illuminate\Foundation\Bus\DispatchesJobs;
7use Illuminate\Foundation\Validation\ValidatesRequests;
8use Illuminate\Routing\Controller as BaseController;
9
10class Controller extends BaseController
11{
12 use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
13}
Note: See TracBrowser for help on using the repository browser.