= $this->extend('layout/management_layout') ?> = $this->section('content') ?>
| First Name | Last Name | New Student | Current Class | Actual Status | Age | Registration Date | Action |
|---|---|---|---|---|---|---|---|
| = esc($student['firstname'] ?? '') ?> | = esc($student['lastname'] ?? '') ?> | Yes No Unknown | = esc($student['class_section'] ?? 'Class not Assigned') ?> | admission under review'; break; case 'payment pending': echo 'payment pending'; break; case 'enrolled': echo 'enrolled'; break; case 'withdraw under review': echo 'withdraw under review'; break; case 'refund pending': echo 'refund pending'; break; case 'withdrawn': echo 'withdrawn'; break; case 'waitlist': echo 'waitlist'; break; case 'denied': echo 'denied'; break; case 'not enrolled': echo 'not enrolled'; break; default: echo 'unknown'; } ?> | = esc($student['age'] ?? '-') ?> | = esc(!empty($student['registration_date']) ? local_date($student['registration_date'], 'm-d-Y') : '-') ?> | |
| No students found. | |||||||