Kick & Hiccup Tracker

Track your baby's movements and monitor fetal activity

Today's Summary

Today's Kicks

{{ $todayKicks }}

Today's Hiccups

{{ $todayHiccups }}

Total Today

{{ $todayKicks + $todayHiccups }}

Log Movement

@if(!empty($weeklyStats))

Weekly Activity

Your baby's movements over the past 7 days

Kicks
Hiccups
@endif
@if($activeTab === 'today') @if($todayEntries && $todayEntries->count() > 0)
Showing {{ $todayEntries->firstItem() }} to {{ $todayEntries->lastItem() }} of {{ $todayEntries->total() }} entries
Page {{ $todayEntries->currentPage() }} of {{ $todayEntries->lastPage() }}
@foreach($todayEntries as $entry)

{{ $entry->type }}

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

{{ $entry->occurred_at->diffForHumans() }}
@endforeach
{{ $todayEntries->links() }}
@else

No Movements Today

Start tracking by logging your baby's kicks and hiccups above.

@endif @else

Filter by Date Range

@if($historyEntries && $historyEntries->count() > 0)
Showing {{ $historyEntries->firstItem() }} to {{ $historyEntries->lastItem() }} of {{ $historyEntries->total() }} entries
Page {{ $historyEntries->currentPage() }} of {{ $historyEntries->lastPage() }}
@foreach($historyEntries as $entry)

{{ $entry->type }}

{{ $entry->occurred_at->format('M j, Y g:i A') }}

{{ $entry->occurred_at->diffForHumans() }}
@endforeach
{{ $historyEntries->links() }}
@else

No History Found

No movements found for the selected date range.

@endif @endif
@if($showDeleteModal)

Delete Entry?

Are you sure you want to delete this movement entry? This action cannot be undone.

@endif