@php $mse = $psychiatryHistory?->payload ?? []; $risk = $psychiatryRisk?->payload ?? []; $plan = $psychiatryPlan?->payload ?? []; @endphp

Psychiatry overview

MSE, risk, formulation, and follow-up for this episode. Clinical notes use the same access controls as other specialty records.

Presenting

{{ $mse['chief_complaint'] ?? '—' }}

{{ $mse['mood_affect'] ?? '—' }}

Risk

{{ $risk['overall_risk'] ?? 'Not assessed' }}

{{ \Illuminate\Support\Str::limit($risk['risk_summary'] ?? '—', 50) }}

Plan

{{ $plan['diagnosis'] ?? 'Not set' }}

{{ $plan['follow_up'] ?? '—' }}

MSE summary
{{ $mse['mse_summary'] ?? '—' }}
Management plan
{{ $plan['plan'] ?? '—' }}
Queue
{{ $workspaceVisit->appointment?->queue_ticket_number ?? '—' }} @if ($workspaceVisit->appointment?->queue_ticket_status) ({{ $workspaceVisit->appointment->queue_ticket_status }}) @endif
Checked in
{{ $workspaceVisit->checked_in_at?->format('d M Y H:i') ?? '—' }}
@if (! empty($clinicalAlerts))

Alerts

@foreach ($clinicalAlerts as $alert)

{{ $alert['message'] ?? '' }}

@endforeach
@endif