@extends('layouts.admin') @section('title') Daftar Ulang @endsection @section('toolbar')

Daftar Ulang

@endsection @section('content')
@php($no = 1) @php($jumlah_du = 0) @foreach($hasil_seleksi as $hasil) @php($jumlah_du += ($hasil->daftar_ulang == 1 ? 1 : 0)) @endforeach
# Nama NIK Tempat, Tanggal Lahir Keterangan KK Asal Sekolah Diterima Di Jalur Status Daftar Ulang
{{ $no++ }} {{ $hasil->siswa->nama ?? $hasil->nama }} {{ $hasil->siswa->nik ?? $hasil->nik }} {{ !empty($hasil->siswa) ? $hasil->siswa->tempat_lahir . ', ' . format_date($hasil->siswa->tanggal_lahir) : '' }} {{ $hasil->siswa->keterangan_kk ?? '' }} {{ $hasil->siswa->asal_sekolah->nama ?? '-' }} {{ $hasil->sekolah->nama ?? $hasil->sekolah }} {{ $hasil->jalur }} {{ $hasil->daftar_ulang == 1 ? 'Daftar Ulang' : 'Tidak' }}
Daftar Ulang Progres : {{ $jumlah_du }} / {{ count($hasil_seleksi) }} ({{ count($hasil_seleksi) > 0 ? round($jumlah_du / count($hasil_seleksi) * 100, 2) : 0 }}%)
@endsection @push('scripts') @endpush