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

Your schedule

Cancel requests the clinician sees immediately in their dashboard.

@forelse($rows as $appt)

{{ $appt->doctor->name ?? 'Clinician' }}

{{ $appt->scheduled_at->format('M j, Y g:i A') }} ยท {{ $appt->channel }}

{{ $appt->status }}

@if($appt->reason)

{{ $appt->reason }}

@endif
@if(in_array($appt->status, ['scheduled', 'accepted'], true))
@csrf @method('PATCH')
@endif
@empty

You have no appointments yet. Book a visit.

@endforelse
{{ $rows->links() }}
@endsection