@extends('layouts.app') @section('page_title', 'Fuel Price On Demand') @section('content')

Fuel Price On Demand

Export
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf
@foreach($fuelTypes ?? [] as $fuelType) @endforeach @forelse($prices ?? [] as $station) @foreach($fuelTypes ?? [] as $fuelType) @endforeach @empty @endforelse
Station{{ $fuelType['name'] }}Last Updated
{{ $station['name'] }} {{ $station['last_updated'] ? \Carbon\Carbon::parse($station['last_updated'])->format('Y-m-d H:i:s') : '-' }}
No stations found
@endsection @push('scripts') @endpush