@push('styles') @endpush

My Risk Level

Track your pregnancy risk level changes over time

{{ $mother->expectantMother->mother_full_name ?? $mother->name }}

IC Number: {{ $mother->expectantMother->ic_number ?? 'Not provided' }}

Series Number: {{ $mother->expectantMother->series_number ?? 'Not assigned' }}

Current Risk Level:

{{ $colorExplanations[$mother->expectantMother->current_color_code] ?? 'Standard care' }}

Understanding Risk Level Colors

@if($showExplanation)
@foreach($colorCodes as $code => $label)

{{ $label }}

{{ $riskLevels[$code] }}

{{ $colorExplanations[$code] }}

@endforeach
@endif

Filter History

Risk Level Change History

Complete record of all risk level changes during your pregnancy

@forelse($history as $entry) @empty @endforelse
Risk Level Date Changed Reason for Change Healthcare Provider

{{ $riskLevels[$entry->color_code] }}

{{ $colorExplanations[$entry->color_code] }}

{{ $entry->changed_at->format('d M Y') }}

{{ $entry->changed_at->format('h:i A') }}

{{ $entry->changed_at->diffForHumans() }}

{{ $entry->notes }}

{{ $entry->pic_name }}

No risk level changes recorded

Your risk level has remained consistent throughout your pregnancy. This is typically a good sign indicating stable pregnancy progress.

@if($history->hasPages())
{{ $history->links() }}
@endif