I tried to create a Request with a subnamespace in Laravel 5, but without success.
When I run the commandphp artisan make:request Temp\OsRequest
, instead of creating a file named OsRequest
inside a Temp
folder, a class called TempOsRequest
is created.
Is there any way to create this class, with the subnamespace, already inside a folder, the way I need it?