mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
14 lines
437 B
PHP
14 lines
437 B
PHP
<div class="flex flex-col space-y-1">
|
|
<a href="{{ $row->link }}" target="_blank">
|
|
<x-badge class="whitespace-nowrap">{{ __('Link') }}</x-badge>
|
|
</a>
|
|
<div>
|
|
@can('update', $row)
|
|
<x-button primary xs :href="route('bitcoinEvent.form', ['bitcoinEvent' => $row])">
|
|
<i class="fa-thin fa-edit"></i>
|
|
{{ __('Edit') }}
|
|
</x-button>
|
|
@endif
|
|
</div>
|
|
</div>
|