Files
einundzwanzig-portal/resources/views/columns/venues/action.blade.php
Benjamin Takats 7e5f6c30ad KEY FIX
2023-01-24 16:41:34 +01:00

13 lines
466 B
PHP

<div wire:key="venues_action_{{ $row->id }}">
@if($row->course_events_count > 0)
<x-button amber wire:click="venueSearch({{ $row->id }})">
{{ __('Show dates') }} ({{ $row->course_events_count }})
</x-button>
@endif
@if($row->course_events_count < 1)
<x-button outlined wire:click="venueSearch({{ $row->id }})">
{{ __('Show dates') }} ({{ $row->course_events_count }})
</x-button>
@endif
</div>