2021-06-13 11:26:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use App\Country;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
class CountryFactory extends Factory
|
|
|
|
{
|
2022-02-12 01:10:29 +01:00
|
|
|
|
2021-06-13 11:26:38 +02:00
|
|
|
protected $model = Country::class;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => $this->faker->country,
|
|
|
|
'nami_id' => $this->faker->randomNumber(),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|