@extends('layouts.verifikator') @section('title', 'Verifikasi Pendaftar') @section('page-title', 'Detail Verifikasi') @section('content')
Kembali ke Antrian
Mendaftar: {{ $applicant->created_at->format('d F Y, H:i') }}

Data Diri & Biodata

{{ $applicant->full_name }}
{{ $applicant->nisn }}
{{ $applicant->birth_place }}, {{ $applicant->birth_date->format('d F Y') }}
{{ $applicant->gender == 'L' ? 'Laki-laki' : 'Perempuan' }}
{{ $applicant->address }}

Data Orang Tua

{{ $applicant->parent_name }}
{{ $applicant->parent_phone }}

Data Pendidikan (Asal Sekolah)

@if($applicant->education)
{{ $applicant->education->previous_school_name }}
{{ $applicant->education->sttb_number ?? '-' }}
{{ $applicant->education->sttb_date ? $applicant->education->sttb_date->format('d F Y') : '-' }}
{{ $applicant->education->study_duration }} Tahun
@if($applicant->education->is_transfer)
Status Pindahan: Ya, dari {{ $applicant->education->transfer_from_school }}
Alasan: {{ $applicant->education->transfer_reason }}
@else Siswa Baru (Bukan Pindahan) @endif
@else

Data pendidikan belum diisi.

@endif

Data Nilai Rapor

@if($applicant->grades && $applicant->grades->count() > 0)
@foreach($applicant->grades->sortBy('semester') as $grade) @endforeach
Semester Nilai Rata-rata
Semester {{ $grade->semester }} {{ number_format($grade->grade, 2) }}
Rata-rata Keseluruhan {{ number_format($applicant->grades->avg('grade'), 2) }}
@else

Data nilai rapor belum diisi.

@endif

Data Tambahan

Hobi & Kegemaran

@if($applicant->hobby)
  • Kesenian: {{ $applicant->hobby->arts ?? '-' }}
  • Olahraga: {{ $applicant->hobby->sports ?? '-' }}
  • Organisasi: {{ $applicant->hobby->organization ?? '-' }}
  • Lainnya: {{ $applicant->hobby->other ?? '-' }}
@else

Tidak ada data hobi.

@endif

Perkembangan Siswa

@if($applicant->development)
  • Beasiswa: {{ $applicant->development->scholarships ?? '-' }}
  • Prestasi: {{ $applicant->development->achievements ?? '-' }}
  • Pernah Tinggal Kelas: {{ $applicant->development->leave_year ? 'Ya (' . $applicant->development->leave_year . ' tahun)' : 'Tidak' }}
@else

Tidak ada data perkembangan.

@endif

Dokumen Persyaratan (Checklist Siswa)

@if($applicant->documents_checklist)
@php $labels = [ 'printout' => 'Cetak Bukti Pendaftaran', 'raport' => 'Fotokopi Nilai Rapor', 'kk' => 'Fotokopi Kartu Keluarga', 'akte' => 'Fotokopi Akte Kelahiran', 'photos_2x3' => 'Pas Foto 2x3 (3 Lembar)', 'photos_3x4' => 'Pas Foto 3x4 (3 Lembar)' ]; @endphp @foreach($labels as $key => $label)
@if(isset($applicant->documents_checklist[$key])) @else @endif
{{ $label }}
@endforeach
@else

Data checklist dokumen tidak ditemukan.

@endif
Jalur Pendaftaran
{{ $applicant->pathway->name ?? 'Tidak ada jalur' }}
No. Reg {{ $applicant->registration_number }}

Panel Verifikasi

@if($applicant->status === 'pending')
@csrf
@csrf
@else

Berkas ini sudah diproses.

{{ $applicant->status == 'verified' ? 'DITERIMA' : 'DITOLAK' }}
@endif
@endsection