@if($likes->isNotEmpty())
<footer {{ $attributes->merge(['class' => 'space-y-12']) }}>
<div class="grid grid-cols-1 gap-6 sm:grid-cols-2">
@if($likes->isNotEmpty())
<div class="flex items-center space-x-3">
<ul class="flex overflow-hidden -space-x-2">
@foreach($likes->take(6) as $like)
<li class="block w-8 h-8">
<x-avatar
:search="parse_url($like->url, PHP_URL_HOST)"
:src="$like->author->avatar"
width="64"
height="64"
class="border-2 border-solid border-snow-0 dark:border-night-0"
:alt="$like->author->name"
:title="$like->author->name"
/>
</li>
@endforeach
</ul>
</div>
@endif
//
</footer>
@endif