Laravel running migrations on “app/database/migrations” folder recursively
So my migrations folder looks like this since I have dozens of tables it keeps things organized and clean: migrations/ create_user_table.php relations/ translations/ I'm trying to do a refresh all migrations and seed but it seems like I've run into a slight hiccup where I don't know the artisan command to run migrations recursively (i.e. run migrations in the relations and translations folders as well). I've tried adding --path="app/database/migrations/*" however it spat out an error. Does anyone know the solution to this? automaticAllDramatic The only way to do it right now is to manually go