Add NationalityFactory

This commit is contained in:
philipp lang 2021-06-13 11:28:06 +02:00
parent 5388ba71ff
commit ec680f2b3f
2 changed files with 32 additions and 0 deletions

View File

@ -3,8 +3,11 @@
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Nationality extends Model
{
use HasFactory;
public $fillable = ['name','nami_id'];
}

View File

@ -0,0 +1,29 @@
<?php
namespace Database\Factories;
use App\Nationality;
use Illuminate\Database\Eloquent\Factories\Factory;
class NationalityFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Nationality::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'name' => $this->faker->country.'Nationality',
'nami_id' => $this->faker->randomNumber(),
];
}
}