@extends('layouts.panel') @section('content')
| No Tiket | Peserta | Passing Grade | @foreach ($examination->sections as $section){{ $section->script->title }} | @endforeachTotal Skor | Status |
|---|---|---|---|---|---|
| {{ $participant->ticket->code }} |
{{ $participant->user->fullname }}
{{ $participant->user->nis . ' | ' . $participant->user->username . ' | ' . $participant->user->email}} |
@foreach ($participant->participant_sections as $section)
@php
$total_score += $section->choices_sum_score;
@endphp
|
Total : {{ number_format($section->choices_sum_score) }} |
@endforeach
{{ number_format($total_score) }} | @php $stat=1; @endphp @foreach ($section->heading_scores as $score) @if ($score->status == 'TL') @php $stat *=0; @endphp @else @php $stat *=1; @endphp @endif @endforeach @php echo $stat ? "Lulus" : "Tidak Lulus"; @endphp |