*/ class CommentFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'content' => $this->faker->paragraphs(3, true), ]; } }