Issue
I'm familiar with the laravel artisan command
make:request
however I can't seem to get it to place it in a directory. For example I have a directory structure
app/Http/Requests/User
and I'd like to place a request in that folder namespaced appropriately but
php artisan make:request User\CreateUserRequest
doesn't work.
Solution
artisan make:request User\\CreateUserRequest
thanks to @DarrylCoder for answering in the comments
Answered By - matthewdaniel
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.