@extends('layouts.admin') @section('page_kicker', 'Scheduling') @section('page_title', 'Appointments') @section('content')

Create appointment

Book a slot between patient and doctor.

@csrf

Calendar view

Appointments are listed below; reschedule or update status inline.

All appointments

Edit schedule and workflow state.

@foreach($appointments as $appointment) @endforeach
Patient Doctor Schedule Visit type Status Update
{{ $appointment->patient->name ?? $appointment->patient_id }} {{ $appointment->doctor->name ?? $appointment->doctor_id }} {{ $appointment->scheduled_at }} {{ $appointment->visit_type }} {{ $appointment->status }}
@csrf @method('PATCH')
{{ $appointments->links() }}
@endsection