@extends('customer.dashboard.layout') @section('title', 'Dashboard') @section('content')
Here's an overview of your account activity
Total Orders
Total Bookings
Active Subscriptions
Total Spent
| Order # | Date | Items | Total | Status | Actions |
|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('M d, Y') }} | {{ $order->orderItems->count() }} item(s) | RM {{ number_format($order->total_amount, 2) }} | {{ ucfirst($order->status) }} | View |
| Booking # | Resource | Date | Time | Total | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $booking->booking_reference }} | {{ $booking->resource->name ?? 'N/A' }} | {{ \Carbon\Carbon::parse($booking->booking_date)->format('M d, Y') }} | {{ \Carbon\Carbon::parse($booking->start_time)->format('g:i A') }} | RM {{ number_format($booking->total_price, 2) }} | {{ ucfirst($booking->status) }} | View |
Book a service to see your bookings here