- Reduced the size of SVG icons in the advanced application and service components from 6x6 to 4x4 for a more uniform appearance. - Updated the external link component size in the services links to maintain visual consistency.
12 lines
336 B
PHP
12 lines
336 B
PHP
@if ($links->count() > 0)
|
|
<x-dropdown>
|
|
<x-slot:title>
|
|
Links
|
|
</x-slot>
|
|
@foreach ($links as $link)
|
|
<a class="dropdown-item" target="_blank" href="{{ $link }}">
|
|
<x-external-link class="size-3.5" />{{ $link }}
|
|
</a>
|
|
@endforeach
|
|
</x-dropdown>
|
|
@endif
|