*/ class AnnouncementFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'title' => fake()->sentence(), 'content' => fake()->paragraphs(3, true), 'type' => AnnouncementType::PUBLIC, ]; } }