adrema/app/Initialize/InitializeGenders.php

23 lines
492 B
PHP
Raw Normal View History

2020-04-12 00:26:44 +02:00
<?php
namespace App\Initialize;
class InitializeGenders {
private $bar;
private $api;
public function __construct($bar, $api) {
$this->bar = $bar;
$this->api = $api;
}
public function handle() {
$this->bar->task('Synchronisiere Geschlechter', function() {
2021-04-10 00:40:36 +02:00
$this->api->genders()->each(function($gender) {
2021-04-11 17:02:49 +02:00
\App\Gender::create(['nami_id' => $gender->id, 'name' => $gender->name]);
2020-04-12 00:26:44 +02:00
});
});
}
}