BondaCare Logo

BondaCare Mother Management Report

{{ $clinic->name }}

Generated on {{ $generatedDate }} by {{ $generatedBy }}

Clinic Information

Name: {{ $clinic->name }}

Address: {{ $clinic->address ?? 'Not provided' }}

Phone: {{ $clinic->phone ?? 'Not provided' }}

Email: {{ $clinic->email ?? 'Not provided' }}

Summary Statistics

{{ $mothers->count() }} Total Mothers
{{ $mothers->filter(function($m) { return $m->user && $m->user->is_active; })->count() }} Active Mothers
{{ $mothers->whereNotNull('currentAssignment')->count() }} Assigned
{{ $mothers->whereNull('currentAssignment')->count() }} Unassigned
@forelse($mothers as $mother) @empty @endforelse
Series No. Name Phone Email Zone Risk Level
{{ $mother->series_number ?? 'N/A' }} {{ $mother->mother_full_name }} {{ $mother->phone_number ?? ($mother->user->phone ?? 'N/A') }} {{ $mother->user->email ?? 'N/A' }} @if($mother->currentAssignment) Zone {{ $mother->currentAssignment->zone->zone_code }} @else Unassigned @endif @if($mother->risk_level) {{ ucfirst($mother->risk_level) }} @else Not Set @endif
No mothers found