@extends('layouts.app') @section('header_title', 'Appointments Schedule') @section('content')

📅 All Scheduled Clinical Appointments

@foreach($appointments as $apt) @endforeach
CodePatientDoctorDate & SlotStatus
{{ $apt->appointment_code }}{{ $apt->patient->full_name }}{{ $apt->doctor->name ?? 'Dr. Pathologist' }}{{ $apt->appointment_date }} ({{ $apt->time_slot }}){{ $apt->status }}
@endsection