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

Appointment Report

Excel / CSVPDF
Reset
@forelse($appointments as $appointment) @empty @endforelse
AppointmentDateDoctorPatientTypeStatusPayment
{{ $appointment->appointment_number }}{{ $appointment->appointment_date?->format('d M Y') }}
{{ $appointment->start_time }}
{{ $appointment->doctor?->user?->name }}{{ $appointment->patient?->user?->name }}{{ ucfirst($appointment->consultation_type) }}{{ ucfirst($appointment->status) }}{{ ucfirst($appointment->payment_status) }}
No appointments found.
{{ $appointments->links() }}
@endsection