Add countryFactory and feeFactory

This commit is contained in:
philipp lang 2021-06-13 11:26:38 +02:00
parent db375629fc
commit 8043911992
4 changed files with 64 additions and 0 deletions

View File

@ -3,9 +3,12 @@
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Country extends Model
{
use HasFactory;
public $fillable = ['name', 'nami_id'];
public $timestamps = false;

View File

@ -3,9 +3,12 @@
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Fee extends Model
{
use HasFactory;
public $fillable = ['name', 'nami_id'];
public $timestamps = false;
}

View File

@ -0,0 +1,29 @@
<?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(),
];
}
}

View File

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