Logo

Workshop Booking Confirmation

Hi {{ $user->name }},

Thank you for booking the workshop. Here are your details:

Booking #: {{ $booking->order_number }}

Workshop: {{ $workshop->name ?? 'N/A' }}

Seats Booked: {{ $booking->number_of_seats }}

Seat Numbers: {{ $booking->seat_no }}

Item Qty Unit Price (AED) Total (AED)
{{ $workshop->name ?? 'Workshop' }} {{ $booking->number_of_seats }} {{ number_format($booking->price, 2) }} {{ number_format($booking->price * $booking->number_of_seats, 2) }}
Subtotal: {{ number_format($booking->price * $booking->number_of_seats, 2) }}
Tax: {{ number_format($booking->tax, 2) }}
Grand Total: {{ number_format($booking->grand_total, 2) }} AED

If you have any questions, feel free to contact us.

Thank you for booking with {{ config('app.name') }}!

© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.