1
I am starting to build an extremely robust application using Laravel 5 and need to organize all my table migration codes. My solution was to structure subfolders to facilitate the understanding and modularization of this application. The problem is that I can’t create my Migrations within "Migrations' subdirectories".
What I’m looking for is something like this:
php artisan make:migration Foo/create_table_foo
php artisan make:migration Foo/upgrade_table_foo
The problem is that I cannot generate this type of structure, by doing this Artisan inserts the date in the folder name and says that it could not find the directory. How to solve?