{{ $key + 1 }} |
{{ $item['subject_code'] }} |
{{ $item['subject_title'] }} |
{{ $item['theory']['subject_sks'] }} |
{{ $item['practice']['subject_sks'] }} |
{{ $item['total_sks'] }} |
{{ $item['theory']['alphabet_score'] }} |
{{ number_format($item['theory']['total_score_theory'], 2) }}
|
{{ $item['practice']['alphabet_score'] }} |
{{ number_format($item['practice']['total_score_practice'], 2)
}} |
{{ number_format($item['total_score'], 2) }} |
@php
$total_sks += ($item['theory']['subject_sks'] + $item['practice']['subject_sks']);
$total_sks_theory += $item['theory']['subject_sks'];
$total_sks_practice += $item['practice']['subject_sks'];
$total_score_theory += $item['theory']['total_score_theory'];
$total_score_practice += $item['practice']['total_score_practice'];
$total_score += $item['total_score'];
@endphp
@empty
Jumlah |
{{ $total_sks_theory }} |
{{ $total_sks_practice }} |
{{ $total_sks }} |
|
{{ number_format($total_score_theory, 2) }} |
|
{{ number_format($total_score_practice, 2) }} |
{{ number_format($total_score, 2) }} |