Controller.php 361 Bytes
Newer Older
Graham Campbell committed
1 2 3
<?php

namespace App\Http\Controllers;
4

Taylor Otwell committed
5
use Illuminate\Foundation\Bus\DispatchesJobs;
6 7
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
Taylor Otwell committed
8
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
9

10
class Controller extends BaseController
Taylor Otwell committed
11
{
Taylor Otwell committed
12
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
13
}