Last change
on this file since c433da6 was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
361 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | namespace App\Http\Controllers;
|
---|
4 |
|
---|
5 | use Illuminate\Foundation\Bus\DispatchesJobs;
|
---|
6 | use Illuminate\Routing\Controller as BaseController;
|
---|
7 | use Illuminate\Foundation\Validation\ValidatesRequests;
|
---|
8 | use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
---|
9 |
|
---|
10 | class Controller extends BaseController
|
---|
11 | {
|
---|
12 | use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.