Files
einundzwanzig-portal/resources/views/columns/meetup_events/manage.blade.php
HolgerHatGarKeineNode 1c129447db change fontawesome kit
2023-08-10 12:46:42 +02:00

17 lines
512 B
PHP

<div class="flex flex-col space-y-1">
<div>
@if(auth()->user()->can('update', $row))
<x-button
black
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>