|
@if (isset($eliteOutstationFareSystem->user_id))
(#{{ $eliteOutstationFareSystem->user_id }}){{ $eliteOutstationFareSystem->user->name ?? "NA" }}
@else
(default)
@endif
|
{{ $eliteOutstationFareSystem->vehicleType->name ?? "NA" }}
|
@php
$vehicleCapacity = \App\Models\VehicleCapacity::whereVehicleTypeId($eliteOutstationFareSystem->vehicle_type_id)->where('capacity_value', $eliteOutstationFareSystem->vehicle_capacity)->value('name');
@endphp
{{ $vehicleCapacity ?? "NA" }}
|
{{ $eliteOutstationFareSystem->booking_min_distance }} |
{{ $eliteOutstationFareSystem->loading_time }} |
{{ \Illuminate\Support\Number::currency($eliteOutstationFareSystem->waiting_charge ?? 0, in:"INR", locale:"en_IN") }} |
{{ \Illuminate\Support\Number::currency($eliteOutstationFareSystem->driver_bata ?? 0, in:"INR", locale:"en_IN") }} |
@if ($eliteOutstationFareSystem->night_fare_type == "amount")
{{ \Illuminate\Support\Number::currency($eliteOutstationFareSystem->night_fare ?? 0, in:"INR", locale:"en_in") }}
@else
{{ $eliteOutstationFareSystem->night_fare }}%
@endif
|
{{ $eliteOutstationFareSystem->pickup_city ?? "(default)" }} |
{{ $eliteOutstationFareSystem->pincode ?? "(default)" }} |
{{ $eliteOutstationFareSystem->drop_city ?? "(default)" }} |
{{ $eliteOutstationFareSystem->drop_pincode ?? "(default)" }} |
|
@empty