x-cloak added

This commit is contained in:
HolgerHatGarKeineNode
2023-02-26 13:39:34 +01:00
parent c9e91703fb
commit 7dd33c93dd
13 changed files with 39 additions and 22 deletions

View File

@@ -1,16 +1,24 @@
<div>
<div class="flex flex-col space-y-1">
<div>
@if($row->course_events_count > 0)
<x-button amber wire:click="venueSearch({{ $row->id }})">
<x-button xs amber wire:click="venueSearch({{ $row->id }})">
{{ __('Show dates') }} ({{ $row->course_events_count }})
</x-button>
@endif
</div>
<div>
@if($row->course_events_count < 1)
<x-button outlined wire:click="venueSearch({{ $row->id }})">
<x-button xs outlined wire:click="venueSearch({{ $row->id }})">
{{ __('Show dates') }} ({{ $row->course_events_count }})
</x-button>
@endif
</div>
<div>
@can('update', $row)
<x-button primary xs :href="route('venue.form', ['venue' => $row])">
<i class="fa-thin fa-edit"></i>
{{ __('Edit') }}
</x-button>
@endif
</div>
</div>