adrema/database/factories/GroupFactory.php

51 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2021-06-13 11:27:22 +02:00
<?php
namespace Database\Factories;
use App\Group;
2023-12-30 02:02:07 +01:00
use App\Group\Enums\Level;
2021-06-13 11:27:22 +02:00
use Illuminate\Database\Eloquent\Factories\Factory;
2022-03-20 16:33:56 +01:00
/**
* @extends Factory<Group>
*/
2021-06-13 11:27:22 +02:00
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(),
2023-12-30 02:02:07 +01:00
'inner_name' => $this->faker->words(5, true),
'level' => $this->faker->randomElement(Level::cases()),
2021-06-13 11:27:22 +02:00
];
}
2022-03-06 02:57:39 +01:00
public function inNami(int $namiId): self
{
return $this->state(['nami_id' => $namiId]);
}
2023-02-05 23:35:08 +01:00
public function name(string $name): self
{
return $this->state(['name' => $name]);
}
2024-02-08 23:09:51 +01:00
2024-02-21 22:08:50 +01:00
public function level(Level $level): self
{
return $this->state(['level' => $level]);
}
2024-02-08 23:09:51 +01:00
public function innerName(string $name): self
{
return $this->state(['inner_name' => $name]);
}
2021-06-13 11:27:22 +02:00
}