23 lines
506 B
PHP
23 lines
506 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\CountryWwl;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\CountryWwl>
|
|
*/
|
|
class CountryWwlFactory extends Factory
|
|
{
|
|
protected $model = CountryWwl::class;
|
|
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'country_name' => $this->faker->unique()->country(),
|
|
'wwl' => strtoupper($this->faker->bothify('??##')),
|
|
];
|
|
}
|
|
}
|