Published

{{ $stats['published_packages'] }}

Official

{{ $stats['official_packages'] }}

Open Cohort

{{ $stats['open_cohorts'] }}

Assignment

{{ $stats['active_assignments'] }}

Running

{{ $stats['running_sessions'] }}

Result Draft

{{ $stats['unpublished_results'] }}

Quick Start

Mulai Tes Kampus

Ikuti urutan ini untuk menjalankan ujian official tanpa melewati kontrol paket, jadwal, peserta, proctoring, dan publikasi hasil.

@foreach ([ ['step' => '1', 'title' => 'Pastikan paket official siap', 'text' => 'Cek blocker official, status published, dan aktivasi paket.', 'route' => 'admin.packages.index', 'action' => 'Package Governance'], ['step' => '2', 'title' => 'Buat cohort dan jadwal', 'text' => 'Tentukan paket, proctor, window waktu, lokasi, dan daftar peserta.', 'route' => 'admin.cohorts.index', 'action' => 'Cohort & Assignment'], ['step' => '3', 'title' => 'Release peserta saat hari H', 'text' => 'Verifikasi kehadiran lalu buka akses mulai ujian untuk paket official.', 'route' => 'proctor.cohorts.index', 'action' => 'Proctor Cohorts'], ['step' => '4', 'title' => 'Monitor sesi berjalan', 'text' => 'Pantau status sesi, insiden, dan audit ringan selama tes berlangsung.', 'route' => 'proctor.dashboard', 'action' => 'Proctor Room'], ['step' => '5', 'title' => 'Publish hasil resmi', 'text' => 'Review skor, publish result, lalu cetak score report atau sertifikat.', 'route' => 'scorer.results.index', 'action' => 'Publish Result'], ] as $item)
{{ $item['step'] }}

{{ $item['title'] }}

{{ $item['text'] }}

@if (Route::has($item['route'])) {{ $item['action'] }} @endif
@endforeach

Operational Snapshot

Cohort Terbaru

Ringkasan jadwal terakhir untuk memastikan tes yang akan berjalan sudah punya paket dan proctor.

@forelse ($latestCohorts as $cohort)

{{ $cohort->name }}

{{ $cohort->code }}

{{ str($cohort->status)->title() }}

{{ $cohort->package?->code ?? 'Paket belum dipilih' }} ยท {{ $cohort->proctor?->name ?? 'Proctor belum ditentukan' }}

{{ $cohort->starts_at?->format('d M Y H:i') ?? 'Mulai fleksibel' }} - {{ $cohort->ends_at?->format('d M Y H:i') ?? 'tanpa batas akhir' }}

@empty
Belum ada cohort. Mulai dari langkah 2 untuk membuat jadwal ujian pertama.
@endforelse