@extends('layouts.admin') @section('title', 'Hasil Ujian SIMPER') @section('content')
| Peserta | SIMPER | Score | Status | Waktu | Aksi |
|---|---|---|---|---|---|
|
{{ $attempt->simper->manpower->name ?? '-' }}
NIK: {{ $attempt->simper->manpower->nik ?? '-' }}
|
{{-- SIMPER --}}
{{ $attempt->simper->code ?? '-' }} | {{-- SCORE --}}{{ number_format($attempt->score, 2) }} | {{-- STATUS --}}@if($attempt->is_passed) LULUS @else TIDAK LULUS @endif | {{-- WAKTU --}}{{ $attempt->finished_at ? \Carbon\Carbon::parse($attempt->finished_at)->format('d M Y H:i') : '-' }} | {{-- ACTION --}}Detail |
|
Belum ada hasil ujian. |
|||||