@extends('layouts.app') @section('title', 'My Dashboard') @section('content')
Total Bookings
Completed
Upcoming
Total Spent
| Booking # | Therapist | Date | Amount | Status | Payment |
|---|---|---|---|---|---|
| {{ $booking->booking_number }} | {{ $booking->provider->user->name ?? 'N/A' }} | {{ date('M d, Y', strtotime($booking->booking_date)) }} | ₦{{ number_format($booking->total_amount, 2) }} | {{ ucfirst($booking->status) }} | {{ ucfirst($booking->payment_status) }} |
No bookings yet. Book a session now!
@endif