@extends('admin.layouts.adminapp') @section('title', 'Appointments') @section('admin-content')

Appointments

Export to Excel
@forelse($appointments as $appointment) @empty @endforelse
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') }}
@endsection @push('scripts') @endpush