@extends('admin.layouts.app') @section('title','Appointment Details') @section('header') Appointment Details @endsection @section('content')
| Appointment Number | {{ $appointment->appointment_number }} |
|---|---|
| Patient | {{ $appointment->patient?->full_name }} |
| Doctor | {{ $appointment->doctor?->full_name }} |
| Date | {{ optional($appointment->appointment_date)->format('Y-m-d') }} |
| Time | {{ $appointment->appointment_time }} |
| Status | {{ $appointment->status }} |
| Reason | {{ $appointment->reason ?: '-' }} |
| Notes | {{ $appointment->notes ?: '-' }} |
| Created At | {{ $appointment->created_at }} |
| Updated At | {{ $appointment->updated_at }} |