diff --git a/seeding.md b/seeding.md index 17d5e380684..7b2aa525c76 100644 --- a/seeding.md +++ b/seeding.md @@ -78,9 +78,9 @@ Within the `DatabaseSeeder` class, you may use the `call` method to execute addi { Model::unguard(); - $this->call('UserTableSeeder'); - $this->call('PostsTableSeeder'); - $this->call('CommentsTableSeeder'); + $this->call(UserTableSeeder::class); + $this->call(PostsTableSeeder::class); + $this->call(CommentsTableSeeder::class); }