kusowl aa7e2f245f misx bugfixes:
- fix users cannot reset password due session expiration
- add a new mail when users contacts via Contact form
- add list page for all deals in broker dashboard
- fixed links in home page
2026-02-03 16:06:26 +05:30

12 lines
515 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->query])}}">
{{$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>