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

Last change on this file since ff9da8b was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago

initial commit

  • Property mode set to 100644
File size: 361 bytes
RevLine 
[0924b6c]1<?php
2
3namespace App\Http\Controllers;
4
5use Illuminate\Foundation\Bus\DispatchesJobs;
6use Illuminate\Routing\Controller as BaseController;
7use Illuminate\Foundation\Validation\ValidatesRequests;
8use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
9
10class Controller extends BaseController
11{
12 use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
13}
Note: See TracBrowser for help on using the repository browser.