12 lines
487 B
PHP

@props(['item'])
<li class="flex space-x-2">
<a class="p-2 md:p-4 flex-1 flex items-center text-gray-600 hover:bg-gray-100 hover:font-bold hover:text-gray-900 rounded-xl"
href="{{route('explore', ['search' => $item])}}">
{{$item->query}}
<x-heroicon-o-arrow-up-right class="w-3 ml-2"/>
</a>
<x-ui.button-sm type="button" onclick="deleteSearch(this, '{{$item->id}}')">
<x-heroicon-o-x-mark class="text-red-500 w-4"/>
</x-ui.button-sm>
</li>