Well I see This stackoverflow question and that's very close to my issue, but I want something like that with this difference:
My models are inside
app/Model
folderMy controllers are inside
app\Http\Controllers\Web
folder
As much as I know, answer which is mentioned in this post's accepted answer can help me to just define first rule using
php artisan make:model Model/MyModel -mcr
that would be make controller
inside app\Http\Controllers
folder itself.
Is there any way that I can define the target folder for Controller
in my custom folder using this single line command?
Note: I saw this question and answers too but it's not single line command.