Display attendee counts on meetup popups

- Added attendee and "maybe" attendee counts to the `meetup-popup` component for better event insights.
This commit is contained in:
HolgerHatGarKeineNode
2025-11-23 17:04:29 +01:00
parent ab32a4626f
commit 5e342d73f7

View File

@@ -31,6 +31,12 @@
{{ $meetup->nextEvent['location'] }}
</flux:text>
@endif
<flux:text class="flex items-center gap-2 mt-2">
<span class="text-xs text-zinc-200">{{ $meetup->nextEvent['attendees'] }} {{ __('Zusagen') }}</span>
<flux:separator vertical/>
<span class="text-xs text-zinc-200">{{ $meetup->nextEvent['might_attendees'] }} {{ __('Vielleicht') }}</span>
</flux:text>
</div>
@endif