@extends('layouts.main') @section('content')

Patient Bookings

View all appointments and bookings for {{ $tenant->name }}.

@if($bookings->isEmpty())
📅

No Bookings Found

You don't have any appointments booked yet.

@else
@foreach($bookings as $booking) @endforeach
Date & Time Patient Name Session Type Fees Status
{{ $booking->date }}
{{ $booking->time }}
{{ $booking->user ? $booking->user->name : 'N/A' }} {{ $booking->sessionType ? $booking->sessionType->name : 'Standard Session' }} ₹{{ number_format($booking->fees, 2) }} {{ $booking->status }}
@endif
@endsection