RISK LEVEL HISTORY REPORT

Maternal Health Risk Assessment

BondaCare Pregnancy Monitoring System

{{ $user->clinic->name ?? 'BondaCare Clinic' }}

PATIENT INFORMATION

Patient Name
{{ $mother->mother_full_name ?? $user->name }}
IC Number
{{ $mother->ic_number ?? 'Not provided' }}
Series Number
{{ $mother->series_number ?? 'Not assigned' }}
Email
{{ $user->email }}
Current Risk Level
{{ $colorCodes[$mother->current_color_code] ?? 'Unknown' }} - {{ $riskLevels[$mother->current_color_code] ?? 'Unknown' }}
Report Generated
{{ now()->format('F d, Y \a\t h:i A') }}
COMPLETE RISK LEVEL CHANGE HISTORY
@if($history->count() > 0) @foreach($history as $entry) @endforeach
Date Changed Risk Level Reason for Change Healthcare Provider
{{ $entry->changed_at->format('d M Y') }}
{{ $entry->changed_at->format('h:i A') }}
{{ $colorCodes[$entry->color_code] ?? 'Unknown' }}
{{ $riskLevels[$entry->color_code] ?? 'Unknown' }}
{{ $colorExplanations[$entry->color_code] ?? '' }}
{{ $entry->notes }} {{ $entry->pic_name }}
Healthcare Professional
Summary:

Total risk level changes recorded: {{ $history->count() }}
Current risk level: {{ $colorCodes[$mother->current_color_code] ?? 'Unknown' }} ({{ $riskLevels[$mother->current_color_code] ?? 'Unknown' }})

@else

No Risk Level Changes Recorded

Your risk level has remained consistent throughout your pregnancy.

This is typically a good sign indicating stable pregnancy progress.

@endif