Created
July 4, 2025 07:51
-
-
Save sooluh/c6b7e702f8e701f60963257644d4cbb2 to your computer and use it in GitHub Desktop.
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; | |
| use Illuminate\Foundation\Auth\Access\AuthorizesRequests; | |
| use Illuminate\Foundation\Validation\ValidatesRequests; | |
| use Illuminate\Routing\Controller as BaseController; | |
| abstract class Controller extends BaseController | |
| { | |
| use AuthorizesRequests; | |
| use ValidatesRequests; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment