@forelse($rides as $outstation)
{{ __('Driver Name : ') }}{{ $outstation->user->name }}
{{--
{{ __('Vehicle No. :') }}{{ $outstation->user->vehicle_no }}
--}}
{{ $outstation->user->vehicleBrand->name }} {{ $outstation->user->vehicleModel->name }} - {{ $outstation->user->vehicleColour->name }}
@if (in_array($outstation->user->vehicle_type_id,[3]))
{{ ($outstation->ac==0) ? __("(Non-A/C)") : __("(A/C)") }}
@endif
{{ __('Booking Type : ') }}{{ ($outstation->type==1) ? __("One-Way") : __("Two-Way") }}
@if (in_array($outstation->user->vehicle_type_id,[1,3]))
{{ __('Max. Passengers : ') }}{{ $outstation->no_of_passengers ?? __("N/A") }}
@endif
@if (in_array($outstation->user->vehicle_type_id,[2,4]))
{{ __('Max. Weight : ') }}{{ $outstation->total_weight ?? __("N/A") }}
@endif
@if(Request::has('to'))
@endif
@empty
{{ __('No Vehicles Available! Try Again Later') }}
@endforelse
{{ $rides->withQueryString()->render("pagination::bootstrap-5") }}