@extends('layouts.appuser') @section('dynamic_css') @endsection @section('content')

Tour Details


Name of officer : {{$findEmployee->name}}
Desigantion : {{$findDesignation->designation_name}}
@php $start_date=$tour_details->start_date; $con_start_date= strtotime($start_date); $start_date_tour= date("j-F-Y", $con_start_date); $end_date=$tour_details->end_date; $con_end_date= strtotime($end_date); $end_date_tour= date("j-F-Y", $con_end_date); $datediff = strtotime($end_date) - strtotime($start_date); $datediff = floor($datediff/(60*60*24)); print '
Period :'.$start_date_tour.' to '.$end_date_tour.'
'; @endphp

Tour Dairy


@php $l=1; @endphp @foreach($travel_dairy as $travel_diaries)
{{csrf_field()}}
Date Description Action
@if(!empty($travel_diaries->tour_description)) @endif @if(empty($travel_diaries->tour_description)) @if (count($errors) > 0) @foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif @endif
@if(!empty($travel_diaries->tour_description)) Delete @endif @if(empty($travel_diaries->tour_description)) @endif
@php $l++; @endphp @endforeach {{--
--}} {{--{{csrf_field()}}--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{--
--}} {{--
--}} {{--
@if(!empty($travel_diaries->tour_description)) @endif @if(empty($travel_diaries->tour_description)) @endif
--}} {{--
--}} {{--
--}} {{--@if(!empty($travel_diaries->tour_description))--}} {{--Delete--}} {{--@endif--}} {{--@if(empty($travel_diaries->tour_description))--}} {{----}} {{--@endif--}} {{--
--}} {{--
--}} {{----}} {{----}} {{--
--}} {{--
--}} {{--
--}}

Travel Bill


@php $i=1; $j = 1; $k = 0; $count_travel_bill = count($travelBillDetails); @endphp @foreach($travelBillDetails as $travelBillDetail) @if($travelBillDetail->disable==0)
{{csrf_field()}} @endif @if($travelBillDetail->disable==1)
Date Airfare Accomodation Bill Local Travel Others Total Remarks Action
{{$travelBillDetail->tour_date}}
{{csrf_field()}} @endif @php $i++; $k++;@endphp
Date Airfare Accomodation Bill Local Travel Others Total Remarks Action
{{$travelBillDetail->tour_date}}
@foreach($airfares[$k] AS $airfare) @endforeach
@foreach($accomodations[$k] AS $accomodation) @endforeach
@foreach($localtravels[$k] AS $localtravel) @endforeach
@foreach($others_all[$k] AS $others) @endforeach
@foreach($remarks[$k] AS $remark) @endforeach
@php $j++ @endphp @endforeach
Generate Cancel
@if(Session::has('tour_diaries_error')) @endif @if(Session::has('travel_bill_error')) @endif @if(Session::has('validation_travel_bill')) @endif @if(Session::has('airfare')) @endif @if(Session::has('accomodation')) @endif @if(Session::has('local_travel')) @endif @if(Session::has('others')) @endif @if(Session::has('all_field')) @endif @endsection @section('dynamic_js') @endsection