@extends('payroll.employee_frontend.layouts.employee') @section('custom_style') @endsection @section('content')

Create tour Application

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@foreach ($tours as $list) @endforeach
Your Recent Tour history
Location Date From Date To Duration Status
{{$list->tour_location}} {{$list->from_date}} {{$list->to_date}} {{get_date_difference($list->from_date,$list->to_date)}} Days @if($list->status ==1) Pending @elseif($list->status ==2) Approved @elseif ($list->status ==3) Rejected @endif
@endsection @section('script') @endsection