📜  如何在 laravel 中一次运行所有播种机 - PHP 代码示例
📅  最后修改于: 2022-03-11 14:53:44.425000             🧑  作者: Mango
代码示例1
make DatabaseSeerder class and call function with seeder Array
call([
UserSeeder::class
AdminSeeder::class
]);
}
}