*/ class CountryWwlFactory extends Factory { protected $model = CountryWwl::class; public function definition(): array { return [ 'country_name' => $this->faker->unique()->country(), 'wwl' => strtoupper($this->faker->bothify('??##')), ]; } }