Skip to content

Commit b76f484

Browse files
committed
patch
1 parent 3e8f08f commit b76f484

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Darryldecode/Backend/Base/Controllers/BaseController.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,15 @@
88

99
namespace Darryldecode\Backend\Base\Controllers;
1010

11-
use App\Http\Controllers\Controller;
11+
use Illuminate\Foundation\Bus\DispatchesJobs;
12+
use Illuminate\Routing\Controller;
13+
use Illuminate\Foundation\Validation\ValidatesRequests;
14+
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
1215

1316
abstract class BaseController extends Controller {
1417

18+
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
19+
1520
/**
1621
* @var \Darryldecode\Backend\Components\User\Models\User
1722
*/

0 commit comments

Comments
 (0)