25 lines
949 B
PHP
25 lines
949 B
PHP
<div>
|
|
@if ($hasSearched)
|
|
<div class="px-5 pb-5">
|
|
@if (! empty($meta))
|
|
<div class="mb-3 flex items-center justify-between">
|
|
<h3 class="text-base font-bold text-text-base">Stations Nearby</h3>
|
|
<span class="text-[10px] font-bold uppercase tracking-widest text-text-muted">
|
|
{{ $meta['count'] ?? 0 }} {{ str('Result')->plural($meta['count'] ?? 0) }}
|
|
</span>
|
|
</div>
|
|
@endif
|
|
|
|
@forelse ($results as $station)
|
|
<div class="mb-2">
|
|
<x-fuel.station-card :station="$station" />
|
|
</div>
|
|
@empty
|
|
<p class="text-sm text-text-muted">
|
|
No stations found within {{ $radius }} {{ str('mile')->plural($radius) }} of "{{ $search }}".
|
|
</p>
|
|
@endforelse
|
|
</div>
|
|
@endif
|
|
</div>
|