@extends('layouts.dashboard') @section('title', 'Registrar Dashboard') @section('page-content')
Student Admissions, Records & Enrollment Management
Under Review
{{ number_format($stats['under_review']) }}
Being processed
Pending Enrollment
{{ number_format($stats['accepted_pending_enrollment']) }}
Ready to enroll
Enrolled This Year
{{ number_format($stats['total_enrolled_this_year']) }}
New students
| Application # | Applicant | Program | Status | Date | Actions |
|---|---|---|---|---|---|
| {{ $application->application_number }} |
{{ $application->first_name }} {{ $application->last_name }}
{{ $application->email }}
|
{{ $application->program->code ?? 'N/A' }} | @php $statusColors = [ 'submitted' => 'bg-yellow-100 text-yellow-800', 'under_review' => 'bg-blue-100 text-blue-800', 'approved' => 'bg-green-100 text-green-800', 'rejected' => 'bg-red-100 text-red-800', ]; $statusColor = $statusColors[$application->status] ?? 'bg-gray-100 text-gray-800'; @endphp {{ ucfirst(str_replace('_', ' ', $application->status)) }} | {{ $application->submitted_at ? $application->submitted_at->format('M d, Y') : 'N/A' }} | Review |
| No recent applications | |||||
{{ $doc->first_name }} {{ $doc->last_name }}
{{ $doc->application_number }} • {{ $doc->document_type ?? 'Document' }}
All documents verified!
{{ $item->program->name }}
{{ $item->program->code }}
No applications
@endforelse