adrema/app/Initialize/InitializeGenders.php

21 lines
398 B
PHP
Raw Normal View History

2020-04-12 00:26:44 +02:00
<?php
namespace App\Initialize;
2021-11-17 23:58:28 +01:00
use Zoomyboy\LaravelNami\NamiUser;
2020-04-12 00:26:44 +02:00
class InitializeGenders {
private $api;
2022-01-03 01:17:24 +01:00
public function __construct($api) {
2020-04-12 00:26:44 +02:00
$this->api = $api;
}
2021-11-17 23:58:28 +01:00
public function handle(NamiUser $user) {
2022-01-03 01:17:24 +01:00
$this->api->genders()->each(function($gender) {
\App\Gender::create(['nami_id' => $gender->id, 'name' => $gender->name]);
2020-04-12 00:26:44 +02:00
});
}
}