I am using Laravel-8 for an application. I have a folder Api inside folder app of Laravel. And i want to create Controller inside folder Web. But when i run command line:
php artisan Api/V1/Appraisal/AppraisalGoalsController
It create controller inside folder Http/Controllers as default.
So how to do that?
app/Http/Controllers/Api/V1/Appraisal/<AllAppraisalApiControllers>.