Kick & Hiccup Tracker

Monitor fetal movements for expectant mothers

@if(Auth::user()->isNurse())
Monitoring Only - Read-only Access
@endif

Movement Tracker

Kicks & Hiccups

Select Patient

@if($mothers && count($mothers) > 0)
@foreach($mothers as $mother)

{{ $mother->name }}

@if($mother->expectantMother && $mother->expectantMother->phone_number)

{{ $mother->expectantMother->phone_number }}

@endif @if($mother->expectantMother && $mother->expectantMother->series_number)

ID: {{ $mother->expectantMother->series_number }}

@endif
@if($selectedMotherId == $mother->id) @endif
@endforeach
@else

No Patients Found

@if($searchTerm) No patients match your search criteria. @else No patients available for monitoring. @endif

@endif
@if($selectedMotherId)

Today's Kicks

{{ $todayKicks }}

Today's Hiccups

{{ $todayHiccups }}

Total Today

{{ $todayKicks + $todayHiccups }}

Patient Information

{{ $selectedMotherName }}

@if($selectedMotherId) @php $mother = $mothers->firstWhere('id', $selectedMotherId); $expectantMother = $mother ? $mother->expectantMother : null; @endphp @if($expectantMother)

{{ $expectantMother->series_number ?? 'N/A' }}

{{ $expectantMother->phone_number ?? 'N/A' }}

{{ $mother->created_at ? $mother->created_at->format('M j, Y') : 'N/A' }}

@endif @endif
@if($selectedMotherId)

Weekly Movement Chart

Baby's movements over the past 7 days

Kicks
Hiccups
@else

Select a Patient

Choose a patient to view their movement chart

@endif

Today's Movements

@if($todayEntries && $todayEntries->count() > 0)
@foreach($todayEntries as $entry)

{{ $entry->movement_type }}

{{ $entry->created_at->format('g:i A') }}

{{ $entry->created_at->diffForHumans() }}
@endforeach
@else

No Movements Today

No kick or hiccup movements recorded for today.

@endif
@else

Select a Patient

Choose a patient from the list above to view their kick and hiccup data

@endif