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

Elite Fare System / Local

@if(Request::exists('city') || Request::exists('pincode') || Request::exists('user_id')) @else @endif
@forelse($eliteLocalFareSystems as $eliteLocalFareSystem) @empty @endforelse
EliteAdmin # Vehicle Type Capacity Booking up to KM Loading Time (mins) Waiting Charge Driver Bata Night Fare Pickup City Pincode Drop City Drop Pincode Actions
@if (isset($eliteLocalFareSystem->user_id)) (#{{ $eliteLocalFareSystem->user_id }}){{ $eliteLocalFareSystem->user->name ?? "NA" }} @else (default) @endif {{ $eliteLocalFareSystem->vehicleType->name ?? "NA" }} @php $vehicleCapacity = \App\Models\VehicleCapacity::whereVehicleTypeId($eliteLocalFareSystem->vehicle_type_id)->where('capacity_value', $eliteLocalFareSystem->vehicle_capacity)->value('name'); @endphp {{ $vehicleCapacity ?? "NA" }} {{ $eliteLocalFareSystem->booking_distance_limit }} {{ $eliteLocalFareSystem->loading_time }} {{ \Illuminate\Support\Number::currency($eliteLocalFareSystem->waiting_charge ?? 0, in:"INR", locale:"en_IN") }} {{ \Illuminate\Support\Number::currency($eliteLocalFareSystem->driver_bata ?? 0, in:"INR", locale:"en_IN") }} @if ($eliteLocalFareSystem->night_fare_type == "amount") {{ \Illuminate\Support\Number::currency($eliteLocalFareSystem->night_fare ?? 0, in:"INR", locale:"en_in") }} @else {{ $eliteLocalFareSystem->night_fare }}% @endif {{ $eliteLocalFareSystem->pickup_city ?? "(default)" }} {{ $eliteLocalFareSystem->pincode ?? "(default)" }} {{ $eliteLocalFareSystem->drop_city ?? "(default)" }} {{ $eliteLocalFareSystem->drop_pincode ?? "(default)" }} Edit
No Results Found
{{ $eliteLocalFareSystems->withQueryString()->render("pagination::bootstrap-5") }}
@endsection @extends('admin.layouts.footer')