We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 566904e commit af3b0f8Copy full SHA for af3b0f8
app/Livewire/Pages/Partners.php
@@ -29,6 +29,7 @@ protected function getInstitutions(): array
29
return Institution::query()
30
->where('enabled', true)
31
->orderBy('order')
32
+ ->with('media')
33
->get()
34
->map(fn (Institution $institution) => [
35
'name' => $institution->name,
@@ -43,6 +44,7 @@ protected function getExperts(): array
43
44
return Expert::query()
45
46
47
48
49
->map(fn (Expert $expert) => [
50
'name' => $expert->name,
0 commit comments