@extends('layouts.dashboard') @section('title', 'Registrar Dashboard') @section('page-content')

Registrar Dashboard

Student Admissions, Records & Enrollment Management

@if($currentYear) {{ $currentYear->name }} @endif @if($currentSemester) {{ $currentSemester->name }} @endif

Pending Review

{{ number_format($stats['pending_applications']) }}

Review now →

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

Recent Applications

View All →
@forelse($recentApplications as $application) @empty @endforelse
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

Applications Overview

@foreach($applicationsByStatus as $status)
{{ str_replace('_', ' ', $status->status) }}
{{ $status->count }}
@endforeach

Documents Pending Verification

{{ count($pendingDocuments) }}
@forelse($pendingDocuments->take(5) as $doc)

{{ $doc->first_name }} {{ $doc->last_name }}

{{ $doc->application_number }} • {{ $doc->document_type ?? 'Document' }}

Verify
@empty

All documents verified!

@endforelse

Applications by Program

@forelse($applicationsByProgram as $item)

{{ $item->program->name }}

{{ $item->program->code }}

{{ $item->count }}
@empty

No applications

@endforelse

Registrar Actions

@endsection