Condition pathways

{{ $patient->fullName() }}

{{ $patient->patient_number }} · Assessments

Active pathways

@if ($active->isEmpty())

No active pathways.

@else
    @foreach ($active as $row)
  • {{ $row->pathway->name }}

    Activated {{ $row->activated_at?->format('d M Y H:i') }} @if ($row->activation_diagnosis_text) · {{ \Illuminate\Support\Str::limit($row->activation_diagnosis_text, 80) }} @endif

    @if ($canManage)
    @csrf
    @endif
  • @endforeach
@endif
@if ($canManage && $catalog->isNotEmpty())

Add a condition pathway

@csrf

Required disease assessments are drafted when their content packs are seeded.

@endif
History
@forelse ($history as $row) @empty @endforelse
Pathway Status Activated
{{ $row->pathway?->name ?? '—' }} {{ $statuses[$row->status] ?? $row->status }} {{ $row->activated_at?->format('d M Y H:i') ?? '—' }}
No pathway history.
@if ($history->hasPages())
{{ $history->links() }}
@endif