@extends('admin.layouts.app') @section('title', 'Appointments') @section('header') Appointments @endsection @section('content')

Appointments List

Add Appointment
@forelse($appointments as $appointment) @empty @endforelse
No. Patient Doctor Date Time Status Actions
{{ $appointment->appointment_number }} {{ $appointment->patient?->full_name }} {{ $appointment->doctor?->full_name }} {{ optional($appointment->appointment_date)->format('Y-m-d') }} {{ $appointment->appointment_time }} {{ $appointment->status }} View Edit
@csrf @method('DELETE')
No appointments found.
{{ $appointments->links() }}
@endsection