You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
php artisan controller:make API\UserController, generates controllers\APIUserController.php, instead op controllers\API\UserController.php.
And instead of class APIUserController extends BaseController {
it should be namespace API; class UserController extends \BaseController {
Wouldn't it make sense to use the namespace? Or perhaps an option like php artisan controller:make UserController --namespace=API (but that seems unnecessary verbose)