mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
16 lines
533 B
PHP
16 lines
533 B
PHP
<div class="flex flex-col space-y-1">
|
|
<div>
|
|
<x-button xs class="whitespace-nowrap" amber
|
|
wire:click="viewHistoryModal({{ $row->id }})">{{ __('Register') }}</x-button>
|
|
</div>
|
|
@can('update', $row)
|
|
<div>
|
|
<x-button xs class="whitespace-nowrap" amber
|
|
:href="route('course.form.courseEvent', ['courseEvent' => $row])">
|
|
<i class="fa-solid fa-edit"></i>
|
|
{{ __('Edit') }}
|
|
</x-button>
|
|
</div>
|
|
@endcan
|
|
</div>
|