*/ class MenuFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => fake()->words(2, true), 'url' => fake()->url(), 'new_tab' => fake()->boolean(), 'parent' => fake()->optional()->randomElement(['home', 'about', 'contact']), 'created_at' => now(), 'updated_at' => now(), ]; } }