@extends('layouts.admin') @section('page_kicker', 'Schedule') @section('page_title', 'My appointments') @section('content')

Scheduled hospital appointments where you are the assigned clinician. To book or change slots, use reception / admin workflows; you can review your calendar here.

Upcoming & recent

@if($appointments->isEmpty())

No appointments found.

@else
@foreach($appointments as $a) @endforeach
When Patient Type Status
{{ $a->scheduled_at?->timezone(config('app.timezone'))->format('Y-m-d H:i') ?? '—' }} {{ $a->patient?->name ?? '—' }} {{ $a->visit_type ?? '—' }} {{ $a->status }}
{{ $appointments->links() }}
@endif
@endsection