33 lines
		
	
	
		
			588 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			588 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Database\Factories;
 | |
| 
 | |
| use App\Confession;
 | |
| use Illuminate\Database\Eloquent\Factories\Factory;
 | |
| 
 | |
| /**
 | |
|  * @extends Factory<Confession>
 | |
|  */
 | |
| class ConfessionFactory extends Factory
 | |
| {
 | |
|     protected $model = Confession::class;
 | |
| 
 | |
|     /**
 | |
|      * Define the model's default state.
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function definition()
 | |
|     {
 | |
|         return [
 | |
|             'name' => $this->faker->sentence(),
 | |
|             'is_null' => false,
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function inNami(int $namiId): self
 | |
|     {
 | |
|         return $this->state(['nami_id' => $namiId]);
 | |
|     }
 | |
| }
 |