adrema/database/factories/CountryFactory.php

30 lines
543 B
PHP
Raw Normal View History

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
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
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(),
];
}
}