@extends('layouts.admin-sekolah') @section('title', 'Data Pendaftar') @section('page-title', 'Data Pendaftar') @section('content')

Data Pendaftar

Semua data calon siswa yang masuk

@if(request()->anyFilled(['pathway', 'status', 'search'])) @endif
@forelse($applicants as $applicant) @empty @endforelse
No. Pendaftaran Nama / NISN Jalur Tanggal Daftar Status Aksi
{{ $applicant->registration_number }}
{{ $applicant->full_name }}
{{ $applicant->nisn }}
@if($applicant->pathway) {{ $applicant->pathway->name }} @else - @endif {{ $applicant->created_at->format('d/m/Y') }} {!! $applicant->status_badge !!}
Tidak ada data pendaftar yang sesuai filter
@if($applicants->hasPages())
{{ $applicants->links() }}
@endif
@endsection