Patient Tracker

Monitor fetal movements for expectant mothers

Tracking System

Kicks & Hiccups

Select Patient

@forelse($mothers as $mother)

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

{{ $mother->phone }}

{{ $mother->expectantMother->expected_delivery_date ?? 'N/A' }}
@empty
@if($searchTerm) No mothers found matching "{{ $searchTerm }}" @else No mothers available @endif
@endforelse
@if($selectedMotherId)
{{ $todayKicks }}
Today's Kicks
{{ $todayHiccups }}
Today's Hiccups
{{ $todayKicks + $todayHiccups }}
Total Movements

Weekly Activity

Baby's movements over the past 7 days

Kicks
Hiccups

Today's Movements

@if($todayEntries->isEmpty())

No movements recorded today

@else
@foreach($todayEntries as $entry)
{{ $entry->type }}
{{ $entry->occurred_at->format('g:i A') }}
@endforeach
@endif
@else

Select a Patient

Choose a patient from the list above to view their data

@endif