change yarn mode

This commit is contained in:
HolgerHatGarKeineNode
2023-02-12 19:01:39 +01:00
parent 7971a822f7
commit dd58588a6e
4 changed files with 5 additions and 16135 deletions

View File

@@ -40,12 +40,14 @@ class ImportGithubMeetups extends Command
], ['name' => $meetup['country']])->id,
'longitude' => $meetup['longitude'],
'latitude' => $meetup['latitude'],
'created_by' => 1,
]);
$meetup = Meetup::updateOrCreate(
['name' => $meetup['name']],
[
'city_id' => $city->id,
'link' => $meetup['url'],
'city_id' => $city->id,
'webpage' => $meetup['url'],
'created_by' => 1,
]);
}