📜  如何在 laravel 中运行特定的播种器 - PHP 代码示例

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

代码示例6
insert([
            'name' => Str::random(10),
            'email' => Str::random(10).'@gmail.com',
            'password' => Hash::make('password'),
        ]);
    }
}