@extends('layouts.app') @section('title', 'Dashboard Peserta') @section('content') @php $nomorPendaftaran = null; if(isset($data_pendaftaran) && $data_pendaftaran->is_final) { // Pengurutan normal berdasarkan ID pendaftar pertama $allFinal = \App\Models\PendaftaranBerkas::where('is_final', 1) ->orderBy('id', 'asc') ->pluck('user_id') ->toArray(); $urutanSiswa = array_search(auth()->id(), $allFinal) + 1; $tigaDigitNisn = substr($data_siswa->nisn ?? '000', -3); $noUrutPendaftaran = str_pad($urutanSiswa, 3, '0', STR_PAD_LEFT); $nomorPendaftaran = "MTsN2-" . $tigaDigitNisn . $noUrutPendaftaran; } @endphp
Pantau status pendaftaran Anda di panel ini.