*/ class ServiceAreaFactory extends Factory { protected $model = ServiceArea::class; public function definition(): array { return [ 'uuid' => (string) Str::uuid(), 'name' => fake()->city().' Service Area', 'code' => strtoupper(Str::random(6)), 'status' => ServiceArea::STATUS_ACTIVE, 'description' => fake()->sentence(), ]; } }