mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
19 lines
765 B
PHP
19 lines
765 B
PHP
<div class="flex flex-col space-y-1">
|
|
<div>
|
|
@if(count($row->attendees ?? []) > 0)
|
|
<x-badge green class="whitespace-nowrap">{{ __('Confirmations') }}
|
|
: {{ count($row->attendees ?? []) }}</x-badge>
|
|
@else
|
|
<x-badge class="whitespace-nowrap">{{ __('Confirmations') }}: {{ count($row->attendees ?? []) }}</x-badge>
|
|
@endif
|
|
</div>
|
|
<div>
|
|
@if(count($row->might_attendees ?? []) > 0)
|
|
<x-badge green class="whitespace-nowrap">{{ __('Perhaps') }}
|
|
: {{ count($row->might_attendees ?? []) }}</x-badge>
|
|
@else
|
|
<x-badge class="whitespace-nowrap">{{ __('Perhaps') }}: {{ count($row->might_attendees ?? []) }}</x-badge>
|
|
@endif
|
|
</div>
|
|
</div>
|