@extends('layouts.admin') @section('title', 'Hasil Ujian SIMPER') @section('content')

Hasil Ujian SIMPER

@if (session('success'))
{{ session('success') }}
@endif
{{-- HEADER --}}
Daftar Hasil Ujian
{{-- TABLE --}}
@forelse($attempts as $attempt) {{-- PESERTA --}} {{-- SIMPER --}} {{-- SCORE --}} {{-- STATUS --}} {{-- WAKTU --}} {{-- ACTION --}} @empty @endforelse
Peserta SIMPER Score Status Waktu Aksi
{{ $attempt->simper->manpower->name ?? '-' }} NIK: {{ $attempt->simper->manpower->nik ?? '-' }}
{{ $attempt->simper->code ?? '-' }} {{ number_format($attempt->score, 2) }} @if($attempt->is_passed) LULUS @else TIDAK LULUS @endif {{ $attempt->finished_at ? \Carbon\Carbon::parse($attempt->finished_at)->format('d M Y H:i') : '-' }} Detail

Belum ada hasil ujian.

{{-- PAGINATION --}} @if($attempts->hasPages()) @endif
@endsection