@extends('admin.layouts.adminapp') @section('title', 'Appointments') @section('admin-content')
ID | Doctor Name | Specialization | Patient Name | Phone Number | Appointment Date | Actions |
---|---|---|---|---|---|---|
{{ $appointment->id }} | {{ $appointment->doctor->name ?? 'N/A' }} | {{ $appointment->doctor->mainSpecialization->name ?? 'N/A' }} | {{ $appointment->full_name }} | {{ $appointment->phone_number }} | {{ \Carbon\Carbon::parse($appointment->appointment_date)->format('M d, Y') }} |
|