GOOD SHELL MAS BOY
Server: Apache/2.4.52 (Ubuntu)
System: Linux vmi1836763.contaboserver.net 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64
User: www-data (33)
PHP: 8.4.10
Disabled: NONE
Upload Files
File: /var/www/html/resources/views/livewire/pages/mobile-search.blade.php
<div>
     <div class="dashboard-style" style="position: relative;">
        <input type="text" wire:model.live="search" class="form-control border-1" placeholder="What service are you looking for?">
        @if(!empty($results))
        <ul class="autocomplete-suggestions" style="position: absolute; top: 100%; left: 0; width: 100%; background: white; border: 1px solid #ddd; z-index: 10;">
            @foreach($results as $result)
            <li wire:click="$set('search', '{{ $result->title }}')">
              <a href="{{route('show.service.page', $result->slug)}}">  {{ $result->title }}</a>
            </li>
            @endforeach
        </ul>
        @endif
    </div>
    
    <style>
        .autocomplete-suggestions li {
            padding: 8px;
            cursor: pointer;
        }
    
        .autocomplete-suggestions li:hover {
            background-color: #f0f0f0;
        }
    </style>
</div>