Post::factory()->createOneQuietly();
Post::factory()->count(3)->createQuietly();
Post::factory()->createManyQuietly([
['message' => 'A new comment'],
['message' => 'Another new comment'],
]);
有用的 for 方法
Laravel 工厂有一个非常有用的 for 方法。您可以使用它来创建 belongsTo 关系。
public function run()
{
Product::factory()
->count(3);
->for(Category::factory()->create())
->create();
}