mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
column added
This commit is contained in:
@@ -1,8 +1,18 @@
|
||||
<div class="flex flex-col space-y-1">
|
||||
<div>
|
||||
<x-badge class="whitespace-nowrap">{{ __('Confirmations') }}: {{ count($row->attendees ?? []) }}</x-badge>
|
||||
@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>
|
||||
<x-badge class="whitespace-nowrap">{{ __('Perhaps') }}: {{ count($row->might_attendees ?? []) }}</x-badge>
|
||||
@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>
|
||||
|
||||
Reference in New Issue
Block a user