All Booking Inquiry
List of all bookings inquiry
@if(session()->has('success'))
{{ session('success') }}
@endif
@if(session()->has('error'))
{{ session('error') }}
@endif
Inquiry List
# | Picked By | Name | Mobile | Departure | Arrival | Dep-Date | Ret-Date | Adult | Child | Infant | Trip Type | Status | Inquiry Date | Action | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{$key+1}} | @if (!empty($value->viewedBy)) {{ $value->viewedBy->name }} @else Pick @endif | {{Str::words($value['name'], 1 ,'..')}} | {{$value['email']}} | {{$value['mobile']}} | {{Str::words($value['departure_code'], 2 ,'..')}} | {{Str::words($value['arrival_code'], 2 ,'..')}} | {{$value['departure_date']}} | {{$value['return_date']}} | {{$value['adult']}} | {{$value['child']}} | {{$value['infant']}} | {{ $value['return_date']!=null ? 'Round' :'Single' }} | {{$value->status}} | {{ $value->created_at->format('M, d Y h:i a') }} |