2021-06-13 11:27:22 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use App\Group;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
class GroupFactory extends Factory
|
|
|
|
{
|
|
|
|
protected $model = Group::class;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
2021-11-19 22:58:27 +01:00
|
|
|
* @return array<string, mixed>
|
2021-06-13 11:27:22 +02:00
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
2021-11-19 22:58:27 +01:00
|
|
|
'name' => $this->faker->words(5, true),
|
2021-06-13 11:27:22 +02:00
|
|
|
'nami_id' => $this->faker->randomNumber(),
|
|
|
|
];
|
|
|
|
}
|
2022-03-06 02:57:39 +01:00
|
|
|
|
|
|
|
public function inNami(int $namiId): self
|
|
|
|
{
|
|
|
|
return $this->state(['nami_id' => $namiId]);
|
|
|
|
}
|
2021-06-13 11:27:22 +02:00
|
|
|
}
|