Files
einundzwanzig-portal/resources/views/columns/meetup_events/manage.blade.php
HolgerHatGarKeineNode a93598ef2e recurring meetup events
2023-02-07 15:18:47 +01:00

17 lines
514 B
PHP

<div class="flex flex-col space-y-1">
<div>
@if(auth()->user()->can('update', $row))
<x-button
primary
xs
:href="route('meetup.event.form', ['country' => $row->meetup->city->country, 'meetupEvent' => $row])"
>
<i class="fa fa-thin fa-edit mr-2"></i>
{{ __('Edit') }}
</x-button>
@else
<x-badge>{{ __('no authorization') }}</x-badge>
@endif
</div>
</div>