Laravel 5.4 Seeds not seeding all tables Laravel 5.4 Seeds not seeding all tables laravel laravel

Laravel 5.4 Seeds not seeding all tables


You should register all seeders in the DatabaseSeeder.php:

$this->call(UsersTableSeeder::class);$this->call(PostsTableSeeder::class);$this->call(CommentsTableSeeder::class);

Within the DatabaseSeeder class, you may use the call method to execute additional seed classes. Using the call method allows you to break up your database seeding into multiple files so that no single seeder class becomes overwhelmingly large.

https://laravel.com/docs/5.4/seeding#calling-additional-seeders