@extends('layouts.admin') @section('title', 'Booking Details') @section('content')
Name
{{ $booking->user->name }}
Phone
{{ $booking->user->phone ?? 'N/A' }}
Special Requirements
{{ $booking->special_requirements ?: 'None provided.' }}
Package Name
{{ $booking->package->title }}
Destination
{{ $booking->package->destination }}
Travel Date
{{ \Carbon\Carbon::parse($booking->travel_date)->format('M d, Y') }}
Total People
{{ $booking->total_people }} Pax
Payment Status
{{ ucfirst($booking->payment->status) }}
Ref: {{ $booking->payment->payment_reference }}
Method: {{ $booking->payment->payment_method }}
@if($booking->payment->paid_at)Paid at: {{ \Carbon\Carbon::parse($booking->payment->paid_at)->format('M d, Y h:i A') }}
@endifNo payment record found.