| # | Full Name | CNIC | Class | Guardian Contact | DOB | Status |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $student->full_name }} | {{ $student->cnic }} | {{ optional($student->classes)->name ?? '-' }} | {{ $student->NewStudentApplicationGuardian->primary_contact ?? 'N/A' }} | {{ $student->dob }} | @if ($student->status == '1') Pending @elseif ($student->status == '2') Accepted @elseif ($student->status == '3') Rejected @else {{ $student->status }} @endif |