Created
April 18, 2020 17:07
-
-
Save TiagoSilvaPereira/380a30cb7467d065bc5339abef75a2fe to your computer and use it in GitHub Desktop.
AbstractCrudController
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers\Base; | |
use Illuminate\Foundation\Bus\DispatchesJobs; | |
use Illuminate\Routing\Controller as BaseController; | |
use Illuminate\Foundation\Validation\ValidatesRequests; | |
use Illuminate\Foundation\Auth\Access\AuthorizesRequests; | |
abstract class CrudController extends BaseController | |
{ | |
use AuthorizesRequests, DispatchesJobs, ValidatesRequests; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment