Running php artisan db:seed
does not work for some reason on my Laravel 5.6 project.
- The command runs (quietly) even without a database
- Does not return any error on the terminal
However, when I run php artisan db:seed --class=ClassNameTableSeeder
it works. What could be the cause of such a weird behavior?
NB : Similar to questions like 39521913 but not a duplicate.