Skip to content

Commit 97dfb35

Browse files
author
Sebastian Fix
committed
wip
1 parent f81d86a commit 97dfb35

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

database/seeders/Codebar/ContactsTableSeeder.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,5 +148,27 @@ public function run(): void
148148
]
149149
);
150150

151+
Contact::updateOrCreate(
152+
['id' => 7],
153+
[
154+
'name' => 'Julian Leipert',
155+
'published' => true,
156+
'sections' => [
157+
ContactSectionEnum::EMPLOYEES => [
158+
'key' => ContactSectionEnum::EMPLOYEES,
159+
'role' => [
160+
'de_CH' => 'Applikationsentwickler',
161+
'en_CH' => 'Application Developer',
162+
],
163+
],
164+
],
165+
'icons' => [
166+
'email' => 'julian.leipert@codebar.ch',
167+
'linkedin' => null,
168+
],
169+
'image' => 'https://res.cloudinary.com/codebar/image/upload/w_400,h_400,f_auto,q_auto/www-paperflakes-ch/people/codebar.webp',
170+
]
171+
);
172+
151173
}
152174
}

0 commit comments

Comments
 (0)