@extends('account.layout') @section('account_content')

Booking History

View your past bookings


@forelse($bookings as $booking) @empty @endforelse
Booking # Date Status Total Actions
#{{ $booking->confirmation_code }} {{ $booking->booking_date?->format('M d, Y') }} {{ ucfirst($booking->status) }} ₹{{ number_format($booking->total_amount, 2) }} View Invoice
No bookings found.
@endsection