@role('Admin|superadmin')
@php
$GrandJumlahBayi = 0;
$GrandJumlahK24 = 0;
$GrandJumlahB24 = 0;
@endphp
@foreach ($unit_kerja as $key => $item)
{{ $item->kecamatan }} |
{{ $item->nama }} |
@php
$jumlah_bayi = $item->unitKerjaAmbilPart2('filterTable63', Session::get('year'), 'jumlah_bayi')['total'];
@endphp
{{ $jumlah_bayi }}
|
@php
$jumlah_k_24 = $item->unitKerjaAmbilPart2('filterTable63', Session::get('year') 'jumlah_k_24')['total'];
echo $jumlah_k_24;
@endphp
|
{{ $jumlah_bayi > 0?number_format(($jumlah_k_24 / $jumlah_bayi) * 100, 2).'%':0 }}
|
@php
$jumlah_b_24 = $item->unitKerjaAmbilPart2('filterTable63', Session::get('year') 'jumlah_b_24')['total'];
$GrandJumlahB24 += $jumlah_b_24;
echo $jumlah_b_24;
@endphp
|
{{ $jumlah_bayi>0?number_format(($jumlah_b_24 / $jumlah_bayi) * 100, 2).'%':0 }}
|
@php
$jumlah = $jumlah_b_24 + $jumlah_k_24;
echo $jumlah;
@endphp
|
{{ $jumlah_bayi>0?number_format(($jumlah / $jumlah_bayi) * 100, 2).'%':0 }}
|
@endforeach
Jumlah |
{{ $GrandJumlahBayi }} |
{{ $GrandJumlahK24 }} |
{{ $GrandJumlahK24 > 0 && $GrandJumlahBayi > 0 ? number_format(($GrandJumlahK24 / $GrandJumlahBayi) * 100, 2).'%' : 0 }}
|
{{ $GrandJumlahB24 }}
|
{{ $GrandJumlahB24 > 0 && $GrandJumlahBayi > 0 ? number_format(($GrandJumlahB24 / $GrandJumlahBayi) * 100, 2).'%' : 0 }}
|
{{$GrandJumlahB24 + $GrandJumlahK24 }}
|
{{ $GrandJumlahB24 > 0 && $GrandJumlahK24 > 0 && $GrandJumlahBayi > 0 ? number_format((($GrandJumlahB24 + $GrandJumlahK24) / $GrandJumlahBayi) * 100, 2).'%' : 0}}
|
@endrole
@role('Puskesmas|Pihak Wajib Pajak')
@php
$GrandJumlahBayi = 0;
$GrandJumlahK24 = 0;
$GrandJumlahB24 = 0;
@endphp
@foreach ($desa as $key => $item)
@if ($item->filterTable63(Session::get('year'), $item->id))
{{ $item->UnitKerja->kecamatan }} |
{{ $item->nama }} |
@php
$jumlah_bayi = $item
->filterTable63(
Session::get('year'),
$item->id,
)
->jumlah_bayi;
$GrandJumlahBayi += $jumlah_bayi;
@endphp
{{ $jumlah_bayi }}
|
@php
$jumlah_k_24 = $item->filterTable63(
Session::get('year'),
$item->id,
)->jumlah_k_24;
$GrandJumlahK24 += $jumlah_k_24;
@endphp
{{ $jumlah_k_24 }}
|
{{ $jumlah_bayi > 0 ? number_format(($jumlah_k_24 / $jumlah_bayi) * 100, 2) . '%' : 0 }}
|
@php
$jumlah_b_24 = $item->filterTable63(
Session::get('year'),
$item->id,
)->jumlah_b_24;
$GrandJumlahB24 += $jumlah_b_24;
@endphp
{{ $jumlah_b_24 }}
|
{{ $jumlah_bayi>0?number_format(($jumlah_b_24 / $jumlah_bayi) * 100, 2).'%':0 }}
|
@php
$jumlah = $jumlah_b_24 + $jumlah_k_24;
echo $jumlah;
@endphp
|
{{ $jumlah_bayi>0?number_format(($jumlah / $jumlah_bayi) * 100, 2).'%':0 }}
|
@endif
@endforeach
Jumlah |
{{ $GrandJumlahBayi }} |
{{ $GrandJumlahK24 }} |
{{ $GrandJumlahBayi>0?number_format(($GrandJumlahK24 / $GrandJumlahBayi) * 100, 2).'%':0 }}
|
{{ $GrandJumlahB24 }}
|
{{ $GrandJumlahBayi>0?number_format(($GrandJumlahB24 / $GrandJumlahBayi) * 100, 2).'%':0 }}
|
{{$GrandJumlahB24 + $GrandJumlahK24 }}
|
{{ $GrandJumlahBayi>0?number_format((($GrandJumlahB24 + $GrandJumlahK24) / $GrandJumlahBayi) * 100, 2).'%':0 }}
|
@endrole