Receipt Number:
{{ $booking->order_id }}
Payment Date:
{{ $booking->updated_at->format('d M Y, H:i') }}
Customer:
{{ $booking->user->name }}
Email:
{{ $booking->user->email }}
Status:
{{ ucfirst($booking->status) }}
{{ $booking->touristAttraction->name }}
📍 {{ $booking->touristAttraction->location }}
Ticket Type: {{ $booking->ticket->name ?? 'General Admission' }}
Visit Date: {{ $booking->visit_date->format('d M Y') }}
Quantity: {{ $booking->quantity }} ticket(s)
@if($booking->notes)
Notes: {{ $booking->notes }}
@endif
Rp {{ number_format($booking->ticket->price ?? 0, 0, ',', '.') }}
Total Amount Paid
Rp {{ number_format($booking->total_price, 0, ',', '.') }}
Scan this QR code for verification
QR Code
{{ $booking->order_id }}