@extends('customer.dashboard.layout') @section('title', 'My Bookings') @section('content')

My Bookings

View and manage all your bookings

@if($bookings->count() > 0)
@foreach($bookings as $booking) @endforeach
Booking # Resource Date & Time Duration Total Status Actions
{{ $booking->booking_reference }} {{ $booking->resource->name ?? 'N/A' }}
{{ $booking->start_datetime->format('M d, Y') }}
{{ $booking->start_datetime->format('g:i A') }}
{{ $booking->duration }} RM {{ number_format($booking->total_price, 2) }} {{ ucfirst($booking->status) }}
{{ $bookings->links() }}
@else

No Bookings Yet

You haven't made any bookings yet

Browse Services
@endif @endsection