*/ class ProgramFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'group_id' => Group::factory(), 'days' => [ [ 'day_number' => 1, 'actions' => [ [ 'title' => 'Mekkä şäherine ugramak', 'description' => $this->faker->paragraph, 'time' => '09:00', 'icon' => 'heroicon-o-paper-airplane', ], [ 'title' => 'Mekgedäki myhmanhana ýerleşmek', 'description' => $this->faker->paragraph, 'time' => '14:00', 'icon' => 'heroicon-o-building-office-2', ], ], ], [ 'day_number' => 2, 'actions' => [ [ 'title' => 'Umra ybadaty', 'description' => $this->faker->paragraph, 'time' => '09:00', 'icon' => 'heroicon-o-moon', ], ], ], ], ]; } }