@extends('layouts.app') @extends('layouts.navbar') @section('content')

{{ __("Outstation") }}

{{-- @if ($oneway<2) @if (Auth::user()->vehicle_type_id!=3) {{ __('One-Way') }} @endif @endif --}} @if ($twoway<1) {{ __('Two-Way') }} @endif {{ __('Back') }}
@forelse ($outstations as $outstation)
{{ __('Type : ') }}{{ __('Two-Way') }} {{-- @if ($outstation->type==1)
{{ __('Type : ') }}{{ __('One-Way') }} @elseif($outstation->type==2)
{{ __('Type : ') }}{{ __('Two-Way') }} @endif --}} @if (Auth::user()->vehicle_type_id==3) @if ($outstation->ac==0) {{ __('(Non-A/C)') }} @elseif($outstation->ac==1) {{ __('(A/C)') }} @endif @endif
{{ __('Fare per Day : Rs.') }}{{ $outstation->fare_day }}
{{ __('Fare per KM : Rs.') }}{{ $outstation->fare_km }}
{{ __('Driver Bata : Rs.') }}{{ $outstation->driver_bata }}
@if (Auth::user()->vehicle_type_id==3)
{{ __('No.of Passengers : ') }}{{ $outstation->no_of_passengers }}
@elseif(Auth::user()->vehicle_type_id==4)
{{ __('Total Weight : ') }}{{ $outstation->total_weight }}
@endif
@empty
{{ __('No Entry Found! Try Creating New!') }}
@endforelse

@endsection @extends('layouts.footer')