|
Bill To: {{ $booking->full_name }} {{ $booking->email }} {{ $booking->phone ?? '' }} {{ $booking->country ?? '' }} |
Invoice #: {{ $booking->booking_reference }} Date: {{ $booking->created_at->format('M d, Y') }} Status: {{ ucfirst($booking->payment_status) }} |
| Package | Travel Date | Travelers | Amount |
|---|---|---|---|
|
{{ $booking->package->title }} {{ $booking->package->destination?->name ?? '' }} |
{{ $booking->travel_date->format('M d, Y') }} | {{ $booking->number_of_people }} | {{ $booking->formatted_total_price }} |
| Total Paid | {{ $booking->formatted_total_price }} | ||
Payment Method: {{ ucfirst($booking->payment_method) }}
@if($booking->payment->transaction_id)
Transaction ID: {{ $booking->payment->transaction_id }}
@endif