kusowl 38d429e5d5 bugfix: improvemnets in UI, misc bugfixes
add tooltip to sidebar buttons
remove profile for admin
fix mobile menu not opening in home page
fix deal image input modal size in mobile view
make image scrollable in input modal
fix explore page filters are not clickable when recent search is maxed
out
change UI for the recent searches
add seeder for categories
improve deal card ui in broker dashboard
2026-01-29 14:02:39 +05:30

12 lines
508 B
PHP

@props(['item'])
<li class="flex items-center space-x-2 px-4 py-1 md:py-2 text-gray-600 hover:bg-gray-100 hover:font-bold hover:text-gray-900 rounded-xl">
<a class="flex-1 flex items-center"
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>