@if (Auth::user()?->status != 'graduate')
@endif
{{--
No |
Kode |
Nama Mata Kuliah |
Smt |
SKS |
Grade |
Nilai Mutu |
Bobot |
@php $total_sks = 0; $total_bobot =0; @endphp
@forelse ($results as $key => $item)
{{ $key + 1 }} |
{{ $item->subject_code }} |
{{ $item->subject_title }} |
{{ uc_words($item->subject_class?->subject?->semester ?? "-")}}
|
{{ $item->subject_total_sks }} |
{{ $item->score_grade }} |
{{ $item->quality_value }} |
{{ $item->weight_value }} |
@php
$total_sks += $item?->subject_total_sks ?? 0;
$total_bobot += $item->weight_value;
@endphp
@empty
Tidak ada nilai yang diumumkan pada semester ini
|
@endforelse
@if(count($results) > 0)
Total |
{{ $total_sks }} |
|
|
{{ number_format($total_bobot, 2, '.') }} |
Indeks Prestasi Kumulatif |
{{ $total_bobot == 0 ? 0 : number_format($total_bobot / $total_sks, 2,'.')}}
|
@endif
--}}
I. Nilai Akademik
No |
Kode |
Nama Mata Kuliah |
SKS |
Jumlah |
Nilai Mutu |
Jumlah (SKS x Nilai) |
Teori |
Praktik |
Teori |
Praktik |
Huruf |
Angka |
Huruf |
Angka |
@php
$total_sks = 0;
$total_sks_theory = 0;
$total_sks_practice = 0;
$total_score_theory = 0;
$total_score_practice = 0;
$total_score = 0;
@endphp
@forelse ($results as $key => $item)
{{ $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
Tidak ada nilai yang diumumkan pada semester ini
|
@endforelse
@if($results)
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) }} |
Indeks Prestasi Kumulatif (IPS) {{ Auth::user()?->level }}
|
@if($total_score != 0) {{ number_format($total_score / $total_sks, 2) }}
@else 0.00 @endif
|
@endif
II. Nilai Kepribadian
No |
Unsur yang Dinilai |
Huruf Mutu |
@forelse ($scorePersonalities as $key => $item)
{{ $key + 1 }} |
{{ $item->personality?->title }} |
{{ $item->alpha_score }}
|
@empty
Tidak ada nilai yang diumumkan pada
semester ini |
@endforelse