38 lines
		
	
	
		
			716 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			716 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Database\Factories;
 | |
| 
 | |
| use App\Group;
 | |
| use Illuminate\Database\Eloquent\Factories\Factory;
 | |
| 
 | |
| /**
 | |
|  * @extends Factory<Group>
 | |
|  */
 | |
| class GroupFactory extends Factory
 | |
| {
 | |
|     protected $model = Group::class;
 | |
| 
 | |
|     /**
 | |
|      * Define the model's default state.
 | |
|      *
 | |
|      * @return array<string, mixed>
 | |
|      */
 | |
|     public function definition()
 | |
|     {
 | |
|         return [
 | |
|             'name' => $this->faker->words(5, true),
 | |
|             'nami_id' => $this->faker->randomNumber(),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function inNami(int $namiId): self
 | |
|     {
 | |
|         return $this->state(['nami_id' => $namiId]);
 | |
|     }
 | |
| 
 | |
|     public function name(string $name): self
 | |
|     {
 | |
|         return $this->state(['name' => $name]);
 | |
|     }
 | |
| }
 |