adrema/app/Initialize/InitializeGenders.php

29 lines
497 B
PHP
Raw Permalink Normal View History

2022-03-11 20:19:17 +01:00
<?php
2020-04-12 00:26:44 +02:00
namespace App\Initialize;
2022-09-02 00:45:39 +02:00
use DB;
2022-02-12 16:16:56 +01:00
use Zoomyboy\LaravelNami\Api;
2021-11-17 23:58:28 +01:00
2022-03-11 20:19:17 +01:00
class InitializeGenders
{
2022-02-12 16:16:56 +01:00
private Api $api;
2020-04-12 00:26:44 +02:00
2022-03-11 20:19:17 +01:00
public function __construct(Api $api)
{
2020-04-12 00:26:44 +02:00
$this->api = $api;
}
2022-02-19 18:06:07 +01:00
public function handle(): void
2022-02-12 16:16:56 +01:00
{
2022-03-11 20:19:17 +01:00
$this->api->genders()->each(function ($gender) {
2022-01-03 01:17:24 +01:00
\App\Gender::create(['nami_id' => $gender->id, 'name' => $gender->name]);
2020-04-12 00:26:44 +02:00
});
}
2022-09-02 00:45:39 +02:00
public function restore(): void
{
DB::table('genders')->delete();
}
2020-04-12 00:26:44 +02:00
}