📌  相关文章
📜  laravel 播种机 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:51.805000             🧑  作者: Mango

代码示例6
/**
 * Run the database seeders.
 *
 * @return void
 */
public function run()
{
    $this->call([
        UserSeeder::class,
        PostSeeder::class,
        CommentSeeder::class,
    ]);
}