mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
13 lines
466 B
PHP
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>
|