2023-09-25 10:49:55 +00:00
|
|
|
@if ($links->count() > 0)
|
2024-03-25 09:41:44 +00:00
|
|
|
<x-dropdown>
|
|
|
|
|
<x-slot:title>
|
|
|
|
|
Links
|
|
|
|
|
</x-slot>
|
|
|
|
|
@foreach ($links as $link)
|
|
|
|
|
<a class="dropdown-item" target="_blank" href="{{ $link }}">
|
2025-10-01 16:43:21 +00:00
|
|
|
<x-external-link class="size-3.5" />{{ $link }}
|
2024-03-25 09:41:44 +00:00
|
|
|
</a>
|
|
|
|
|
@endforeach
|
|
|
|
|
</x-dropdown>
|
2023-09-25 10:49:55 +00:00
|
|
|
@endif
|