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