Best practice to place sanctum $user->tokenCan() check

I am following a tutorial on building an API in Laravel. I have reached the stage of Authentication/Authorisation and have a question about best practices. The tutorial uses "Requests" for validation on the controller’s ‘store’ method and in the ‘authorize’ method of this request, the following code is placed. public function authorize() { $user =… Read More Best practice to place sanctum $user->tokenCan() check