Laravel 5 - artisan seed [ReflectionException] Class SongsTableSeeder does not exist
1
Solution :
You need to put SongsTableSeeder
into file SongsTableSeeder.php
in the same directory where you have your DatabaseSeeder.php
file.
And you need to run in your console:
composer dump-autoload
to generate new class map and then run:
php artisan db:seed
or
php artisan db:seed --class=SongsTableSeeder