11 lines
498 B
PHP
11 lines
498 B
PHP
<select
|
||
{{ $attributes->whereStartsWith('wire:') }}
|
||
class="h-11 w-full rounded-xl border border-[#e5ded7] bg-[#faf6f3] px-3 text-sm font-semibold text-[#4a3f3b] focus:outline-none focus:ring-2 focus:ring-[#bb5b3e]"
|
||
>
|
||
<option value="reliable">Best price (reliable)</option>
|
||
<option value="price">Cheapest first</option>
|
||
<option value="distance">Nearest first</option>
|
||
<option value="updated">Recently updated</option>
|
||
<option value="brand">Brand A–Z</option>
|
||
</select>
|