@extends('layouts.admin') @section('page_kicker', 'History') @section('page_title', 'Consultation history') @section('content')

Your consultations

Types and status only — clinical notes stay with your care team.

@forelse($rows as $c) @empty @endforelse
Date Clinician Type Status
{{ $c->created_at->format('M j, Y') }} {{ $c->doctor->name ?? '—' }} {{ $c->type }} {{ $c->status }}
No consultations recorded.
{{ $rows->links() }}
@endsection