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