@extends('layouts.app') @section('title', 'MOH 333 | Delivery Summary') @section('styles')@endsection @section('content')

MOH 333 | Delivery Summary

{{ $month->format('F Y') }} ยท Auto-generated from delivery records

@include('reports._moh-month') @if($data['total'] === 0)

No delivery data found for {{ $month->format('F Y') }}.

Ensure deliveries are recorded with mode, outcome, and complications fields.

@endif

Total Deliveries

{{ $data['total'] }}

Live Births

{{ $data['live_births'] }}

Still Births

{{ $data['still_births'] }}

Maternal Deaths

{{ $data['maternal_deaths'] }}

IndicatorCount
Mode of Delivery
Normal / Spontaneous Vaginal{{ $data['normal'] }}
Caesarean Section{{ $data['cs'] }}
Assisted (Vacuum / Forceps / Breech){{ $data['assisted'] }}
Outcomes
Live Births{{ $data['live_births'] }}
Still Births{{ $data['still_births'] }}
Complications
Deliveries with Complications{{ $data['complications'] }}
Maternal Deaths{{ $data['maternal_deaths'] }}
@endsection