@section('content')
Your booking has been confirmed.
| Booking ID | #{{ $booking->id }} |
|---|---|
| Name | {{ $booking->name }} |
| Mobile | {{ $booking->mobile }} |
| Journey Date | {{ $booking->booking_date }} {{ $booking->booking_time }} |
| From | {{ $booking->startPoint->name ?? 'N/A' }} |
| To | {{ $booking->package->destination->name ?? 'Sabarimala' }} |
| Seats | @foreach($booking->seats as $seat) Seat {{ $seat->seat_number }} @endforeach |
| Total Paid | ₹{{ number_format($booking->total_price, 2) }} |