@extends('layouts.admin') @section('page_kicker', 'Patient') @section('page_title', $patient->name) @section('content')
Back to patients

Profile

Email
{{ $patient->email }}
@if($patient->phone)
Phone
{{ $patient->phone }}
@endif

Consultations

    @forelse($consultations as $c)
  • #{{ $c->id }} · {{ $c->type }} · {{ $c->status }} · {{ $c->created_at->format('M j, Y') }}
  • @empty
  • None yet.
  • @endforelse

Appointments

    @forelse($appointments as $a)
  • #{{ $a->id }} · {{ $a->status }} · {{ optional($a->scheduled_at)->format('M j, Y g:i A') }}
  • @empty
  • None yet.
  • @endforelse

Your notes

    @forelse($notes as $n)
  • {{ $n->created_at->format('M j, Y g:i A') }}

    {{ $n->notes }}

    @if($n->advice)

    Advice: {{ $n->advice }}

    @endif
  • @empty
  • No notes saved.
  • @endforelse
@endsection