source: app/Http/Controllers/Controller.php@ 0a1fb54

Last change on this file since 0a1fb54 was 2fc88ec, checked in by beratkjufliju <kufliju@…>, 3 years 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.