diff --git a/resources/views/livewire/public/fuel-finder.blade.php b/resources/views/livewire/public/fuel-finder.blade.php index 354ab7d..f51d656 100644 --- a/resources/views/livewire/public/fuel-finder.blade.php +++ b/resources/views/livewire/public/fuel-finder.blade.php @@ -1,3 +1,106 @@ -
- +
+ + + + {{-- Scrollable main content, offset for fixed header (~80px) and footer (~80px) --}} +
+ + {{-- #search --}} +
+
+
+ + +
+ @error('search') +

{{ $message }}

+ @enderror + + {{-- Filter pills (scrollable row) --}} +
+
+ +
+
+ +
+
+ +
+
+ + +
+ + @if ($apiError) +
+ {{ $apiError }} +
+ @endif +
+ + {{-- #recommendation --}} + @if ($prediction) +
+ +
+ @endif + + {{-- #map --}} +
+ +
+ + {{-- #stations --}} + @if ($hasSearched) +
+ @if (! empty($meta)) +
+

Stations Nearby

+ + {{ $meta['count'] ?? 0 }} {{ str('Result')->plural($meta['count'] ?? 0) }} + +
+ @endif + + @forelse ($results as $station) +
+ +
+ @empty +

+ No stations found within {{ $radius }} {{ str('mile')->plural($radius) }} of "{{ $search }}". +

+ @endforelse +
+ @endif + + {{-- #forecast --}} +
+ +
+ +
+ + +