@extends('layouts.app')
@section('content')
| No |
Satker |
Jan |
Feb |
Mar |
Apr |
Mei |
Jun |
Jul |
Agt |
Sep |
Okt |
Nov |
Des |
@foreach($satker as $key => $dt)
| {{$key+1}} |
{{$dt->nama}} |
@for ($i = 1; $i <= 12; $i++)
@php
$laporanperkara = \App\Models\LaporanPerkara::where('satker_id',$dt->id)
->where('bulan', $i)->where('tahun',$tahunaktif)->first();
@endphp
@if($laporanperkara)
|
@else
@if($tahunaktif <> $tahunterakhir)
|
@else
@if($i < $bulanterakhir)
|
@elseif($i == $bulanterakhir )
|
@else
|
@endif
@endif
@endif
@endfor
@endforeach
@endsection