Voucher Reference:
{{ $order->reference ?? 'VIA-' . strtoupper(substr(md5(time()), 0, 8)) }}
Booking Date:
{{ $order->created_at ? $order->created_at->format('M d, Y') : now()->format('M d, Y') }}
Traveler Name:
{{ $customer->name ?? 'Guest Traveler' }}
Email:
{{ $customer->email ?? 'Not Provided' }}
Total Amount:
${{ number_format($order->total_amount ?? 0, 2) }}
Status:
CONFIRMED
Booking Details
@if(isset($order->service_type))
Service Type: {{ ucfirst($order->service_type) }}
@endif
@if(isset($order->destination))
Destination: {{ $order->destination }}
@endif
@if(isset($order->travel_dates))
Travel Dates: {{ $order->travel_dates }}
@endif
@if(isset($order->special_requests))
Special Requests: {{ $order->special_requests }}
@endif
QR Code
{{ $order->reference ?? 'VIA-' . strtoupper(substr(md5(time()), 0, 8)) }}
{{ $order->reference ?? 'VIA-' . strtoupper(substr(md5(time()), 0, 8)) }}