@extends('admin.layouts.app') @section('content')
{{-- navbar - top --}} @include('admin.layouts.topbar')
{{-- navbar - side --}} @include('admin.layouts.nav')

Fuel Stations

@if(Request::exists('search')) @endif
@forelse($fuelStations as $fuelStation) @php $is24Hrs = $fuelStation->opening_hours['24_hrs'] == "true"; $opening = $fuelStation->opening_hours['opening']; $closing = $fuelStation->opening_hours['closing']; @endphp @empty @endforelse
# Created By Fuel Company Services Opening Hours Location Status Actions
{{ $fuelStation->id }} {{ $fuelStation->user->name ?? '--' }} {{ $fuelStation->fuelCompany->name ?? "Unknown Fuel Station" }} {{ $fuelStation->fuelServices->pluck('name')->implode(', ') }} {{ $is24Hrs ? "24hrs" : "$opening - $closing" }} {{ $fuelStation->district->name ?? '' }}, {{ $fuelStation->state->name ?? '' }} {{ $fuelStation->status }} Edit View Location
No Results Found!
{{ $fuelStations->withQueryString()->render("pagination::bootstrap-5") }}
@endsection @extends('admin.layouts.footer')