22 lines
		
	
	
		
			397 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			397 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php 
 | |
| 
 | |
| namespace App\Initialize;
 | |
| 
 | |
| use Zoomyboy\LaravelNami\Api;
 | |
| 
 | |
| class InitializeGenders {
 | |
| 
 | |
|     private Api $api;
 | |
| 
 | |
|     public function __construct(Api $api) {
 | |
|         $this->api = $api;
 | |
|     }
 | |
| 
 | |
|     public function handle(): void
 | |
|     {
 | |
|         $this->api->genders()->each(function($gender) {
 | |
|             \App\Gender::create(['nami_id' => $gender->id, 'name' => $gender->name]);
 | |
|         });
 | |
|     }
 | |
| }
 |