*/ final class ResumeFactory extends Factory { protected $model = Resume::class; public function definition(): array { return [ 'name' => $this->faker->name(), 'label' => $this->faker->word(), 'email' => $this->faker->unique()->safeEmail(), 'phone' => $this->faker->phoneNumber(), 'url' => $this->faker->url(), 'address' => $this->faker->streetAddress(), 'postal_code' => $this->faker->postcode(), 'city' => $this->faker->city(), 'country_code' => $this->faker->randomElement(CountryAlpha2::cases()), 'region' => $this->faker->word(), ]; } }