@extends('client.layout.main') @section('title') {{ 'user' }} @endsection @section('content')

My Tours

Exploring Our Tour History

Client itinerary list

@foreach ($tours as $data) @endforeach
Id Date Price Action
{{ $loop->iteration }} @php $lastRecord = \App\Models\HotelBooking::where('tourb_id', $data->id) ->orderBy('day', 'DESC') ->first(); $firstRecord = \App\Models\HotelBooking::where('tourb_id', $data->id) ->orderBy('day', 'ASC') ->latest() ->first(); @endphp {{ $firstRecord->date }} to {{ $lastRecord->date }} {{ $data->price ?? ""}} View Itinerary
@endsection