@extends('layouts.app') @section('content') @if(empty($hotels) && isset($bookings))
| S.No | Booking ID | Customer | Destination | Amount | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $booking->booking_reference }}
|
{{ $booking->holder_name }} {{ $booking->holder_surname }}
{{ $booking->holder_email }}
|
{{ $booking->city_name }}@if($booking->country_name), {{ $booking->country_name }}@endif
{{ \Carbon\Carbon::parse($booking->checkin)->format('d M Y') }}
→ {{ \Carbon\Carbon::parse($booking->checkout)->format('d M Y') }}
|
{{ number_format($booking->receivable_price, 2) }} {{ $booking->currency }} | @if($booking->status == 'confirmed') ✅ Confirmed @elseif($booking->status == 'ON_HOLD') ⏳ On Hold @else ❌ Cancelled @endif | |
| No bookings found. | ||||||
No bookings found for this filter.