mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
🌍 Fix incorrect variable reference for country flag rendering in dashboard meetups list
This commit is contained in:
@@ -161,8 +161,8 @@ class extends Component {
|
|||||||
<div class="flex items-center space-x-2">
|
<div class="flex items-center space-x-2">
|
||||||
<div class="font-medium">{{ $meetup->name }}</div>
|
<div class="font-medium">{{ $meetup->name }}</div>
|
||||||
<img
|
<img
|
||||||
alt="{{ strtolower($event->meetup->city->country->code) }}"
|
alt="{{ strtolower($meetup->city->country->code) }}"
|
||||||
src="{{ asset('vendor/blade-flags/country-'.strtolower($event->meetup->city->country->code).'.svg') }}"
|
src="{{ asset('vendor/blade-flags/country-'.strtolower($meetup->city->country->code).'.svg') }}"
|
||||||
width="24" height="12"
|
width="24" height="12"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user