*/ class CommentsFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'content' => $this->faker->paragraph(), 'is_banned' => $this->faker->boolean(70), ]; } }