A |
MUATAN NASIONAL |
|
|
|
|
|
|
|
|
|
|
|
@php
$i = 1;
$count_mu = 0;
$sum_mu = 0;
@endphp
@foreach($national as $rows)
@php
$score = App\Transcript::where('active',1)
->where('lesson_id',$rows->id)
->where('user_id',$student->id)
->first();
@endphp
{{ $i }} |
{{ $rows->name }} |
@if($score) {{ $score->semester_one }} @endif |
@if($score) {{ $score->semester_two }} @endif |
@if($score) {{ $score->semester_three }} @endif |
@if($score) {{ $score->semester_four }} @endif |
@if($score) {{ $score->semester_five }} @endif |
@if($score) {{ $score->semester_six }} @endif |
@if($score) {{ $score->average_score }} @endif |
@if($score) {{ $score->school_score }} @endif |
@if($score) {{ $score->un_score }} @endif |
|
@if($score) {{ $score->final_score }} @endif |
@php
$i++;
$count_mu++;
if($score){
$sum_mu = $sum_mu + $score->final_score;
}
@endphp
@endforeach
|
B |
MUATAN KEWILAYAHAN |
|
|
|
|
|
|
|
|
|
|
|
@php
$i = 1;
$count_mk = 0;
$sum_mk = 0;
@endphp
@foreach($area as $rows)
@php
$score = App\Transcript::where('active',1)
->where('lesson_id',$rows->id)
->where('user_id',$student->id)
->first();
@endphp
{{ $i }} |
{{ $rows->name }} |
@if($score) {{ $score->semester_one }} @endif |
@if($score) {{ $score->semester_two }} @endif |
@if($score) {{ $score->semester_three }} @endif |
@if($score) {{ $score->semester_four }} @endif |
@if($score) {{ $score->semester_five }} @endif |
@if($score) {{ $score->semester_six }} @endif |
@if($score) {{ $score->average_score }} @endif |
@if($score) {{ $score->school_score }} @endif |
@if($score) {{ $score->un_score }} @endif |
|
@if($score) {{ $score->final_score }} @endif |
@php
$i++;
$count_mk++;
if($score){
$sum_mk = $sum_mk + $score->final_score;
}
@endphp
@endforeach
@if(count($interestc1))
|
C1 |
DASAR BIDANG KEAHLIAN |
|
|
|
|
|
|
|
|
|
|
|
@php
$i = 1;
$count_c1 = 0;
$sum_c1 = 0;
@endphp
@foreach($interestc1 as $rows)
@php
$score = App\Transcript::where('active',1)
->where('lesson_id',$rows->id)
->where('user_id',$student->id)
->first();
@endphp
{{ $i }} |
{{ $rows->name }} |
@if($score) {{ $score->semester_one }} @endif |
@if($score) {{ $score->semester_two }} @endif |
@if($score) {{ $score->semester_three }} @endif |
@if($score) {{ $score->semester_four }} @endif |
@if($score) {{ $score->semester_five }} @endif |
@if($score) {{ $score->semester_six }} @endif |
@if($score) {{ $score->average_score }} @endif |
@if($score) {{ $score->school_score }} @endif |
@if($score) {{ $score->un_score }} @endif |
|
@if($score) {{ $score->final_score }} @endif |
@php
$i++;
$count_c1++;
if($score){
$sum_c1 = $sum_c1 + $score->final_score;
}
@endphp
@endforeach
@endif
@if(count($interestc2))
|
C2 |
DASAR PROGRAM KEAHLIAN |
|
|
|
|
|
|
|
|
|
|
|
@php
$i = 1;
$count_c2 = 0;
$sum_c2 = 0;
@endphp
@foreach($interestc2 as $rows)
@php
$score = App\Transcript::where('active',1)
->where('lesson_id',$rows->id)
->where('user_id',$student->id)
->first();
@endphp
{{ $i }} |
{{ $rows->name }} |
@if($score) {{ $score->semester_one }} @endif |
@if($score) {{ $score->semester_two }} @endif |
@if($score) {{ $score->semester_three }} @endif |
@if($score) {{ $score->semester_four }} @endif |
@if($score) {{ $score->semester_five }} @endif |
@if($score) {{ $score->semester_six }} @endif |
@if($score) {{ $score->average_score }} @endif |
@if($score) {{ $score->school_score }} @endif |
@if($score) {{ $score->un_score }} @endif |
|
@if($score) {{ $score->final_score }} @endif |
@php
$i++;
$count_c2++;
if($score){
$sum_c2 = $sum_c2 + $score->final_score;
}
@endphp
@endforeach
@endif
@if(count($interestc3))
|
C3 |
DASAR KOMPETENSI KEAHLIAN |
|
|
|
|
|
|
|
|
|
|
|
@php
$i = 1;
$count_c3 = 0;
$sum_c3 = 0;
@endphp
@foreach($interestc3 as $rows)
@php
$score = App\Transcript::where('active',1)
->where('lesson_id',$rows->id)
->where('user_id',$student->id)
->first();
@endphp
{{ $i }} |
{{ $rows->name }} |
@if($score) {{ $score->semester_one }} @endif |
@if($score) {{ $score->semester_two }} @endif |
@if($score) {{ $score->semester_three }} @endif |
@if($score) {{ $score->semester_four }} @endif |
@if($score) {{ $score->semester_five }} @endif |
@if($score) {{ $score->semester_six }} @endif |
@if($score) {{ $score->average_score }} @endif |
@if($score) {{ $score->school_score }} @endif |
@if($score) {{ $score->un_score }} @endif |
|
@if($score) {{ $score->final_score }} @endif |
@php
$i++;
$count_c3++;
if($score) {
$sum_c3 = $sum_c3 + $score->final_score;
}
@endphp
@endforeach
@endif
@php
$ukk = App\ScoreUkk::where('active',1)
->where('user_id',$student->id)
->where('year_id',session('s_year'))
->where('classroom_id',session('s_classroom'))
->first();
if($ukk) {
$score_ukk = $ukk->ukk_score;
$score_rpl = $ukk->rpl_score;
} else {
$score_ukk = null;
$score_rpl = null;
}
@endphp
{{ $i+1 }} |
Nilai UKK |
|
|
|
|
|
|
|
|
|
{{ $score_ukk }} |
{{ $score_ukk }} |
{{ $i+2 }} |
Nilai Praktik Kerja Industri |
|
|
|
{{ $score_rpl }} |
|
|
|
|
|
|
{{ $score_rpl }} |