{{ $totalCount }}
Jumlah Fail
{{ $lulusResult }}
Lulus
{{ $lulusResult }}
Lulus/CC
{{ $processResult }}
Sedang Diproses
{{ $batalResult }}
Batal
{{ $tolakResult }}
Tolak
| No. |
Kategori Fail |
Lulus/CCC |
Lulus |
Sedang Diproses |
Batal |
Tolak |
Jumlah |
@foreach($data as $index => $row)
| {{ $index + 1 }}. |
@php
$classification = '';
if (in_array($row->kategori_fail, ['LBT/600-6/3', 'LB1/600-5/1', 'LB2/600-5/2', 'LB3/600-5/3', 'LB4/600-5/4'])) {
$classification = 'A';
} elseif (in_array($row->kategori_fail, ['LB5/600-5/5', 'LB5X/600-5/6', 'LB6/600-5/7', 'LB6X/600-5/8', 'LB7/600-5/9', 'LB8/600-5/10', 'LB9/600-5/11'])) {
$classification = 'B';
}
@endphp
@if($classification)
{{ $classification }}
@endif
|
{{ $row->jumlah_lulusccc ?? 0 }} |
{{ $row->jumlah_lulus ?? 0 }} |
{{ $row->sedang_proses ?? 0 }} |
{{ $row->jumlah_tolak ?? 0 }} |
{{ $row->jumlah_batal ?? 0 }} |
{{ $row->total ?? 0 }} |
@endforeach
{{-- data: [69, 17, 32, 20, 41, 11, 57, 15, 57, 52, 92, 42], --}}
{{ implode(',', $monthlyCounts) }}
{{ implode(',', $monthlyCountsLulus) }}