@extends('layouts.app') @section('content')
Welcome, Dr. {{ auth()->user()->name }}
| Time | Patient | Type | Status | Reason |
|---|---|---|---|---|
| {{ $appointment->start_time }} - {{ $appointment->end_time }} | {{ $appointment->patient?->user?->name }} | {{ ucfirst($appointment->consultation_type) }} | {{ ucfirst($appointment->status) }} | {{ $appointment->reason ?: '-' }} |
| No appointments today. | ||||
| Date | Time | Patient | Status |
|---|---|---|---|
| {{ $appointment->appointment_date?->format('d M Y') }} | {{ $appointment->start_time }} | {{ $appointment->patient?->user?->name }} | {{ ucfirst($appointment->status) }} |
| No upcoming appointments. | |||