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

Advanced Appointment Search

Book Appointment
Reset
@forelse($appointments as $appointment) @empty @endforelse
AppointmentDate & TimeDoctorPatientSpecialtyTypeStatus
{{ $appointment->appointment_number }} {{ $appointment->appointment_date?->format('d M Y') }}
{{ $appointment->start_time }} - {{ $appointment->end_time }}
{{ $appointment->doctor?->user?->name }} {{ $appointment->patient?->user?->name }} {{ $appointment->doctor?->specialty?->name }} {{ ucfirst($appointment->consultation_type) }} {{ ucfirst($appointment->status) }}
No appointments found.
{{ $appointments->links() }}
@endsection