@vite(['resources/css/app.css', 'resources/js/app.jsx'])

Application Status

{{ $application->application_number }}

{{ $application->full_name }}

{{ $application->program->name ?? 'N/A' }}

{{ $application->status_label }}

Application Progress

@if($application->submitted_at) @endif

Application Submitted

@if($application->submitted_at)

{{ $application->submitted_at->format('M d, Y H:i') }}

@endif
@if(in_array($application->status, ['under_review', 'documents_pending', 'interview_scheduled', 'interviewed', 'accepted', 'enrolled'])) @endif

Under Review

@if($application->reviewed_at)

{{ $application->reviewed_at->format('M d, Y H:i') }}

@endif
@if(in_array($application->status, ['accepted', 'enrolled', 'rejected'])) @endif

@if($application->status === 'accepted' || $application->status === 'enrolled') Application Accepted @elseif($application->status === 'rejected') Application Rejected @else Decision Pending @endif

@if($application->status === 'enrolled')

Enrolled

Congratulations! You are now enrolled.

@endif

{{ $application->email }}

{{ $application->phone }}

{{ $application->program->name ?? 'N/A' }}

{{ $application->academicYear->name ?? 'N/A' }}

{{ str_replace('_', ' ', $application->admission_type ?? 'N/A') }}

₦{{ number_format($application->application_fee ?? 0, 2) }} {{ $application->fee_paid ? 'Paid' : 'Not Paid' }}

@if($application->review_notes && in_array($application->status, ['accepted', 'rejected', 'enrolled']))

{{ $application->status === 'rejected' ? 'Rejection Reason' : 'Notes' }}

{{ $application->review_notes }}

@endif @if($application->status === 'accepted' || $application->status === 'enrolled')

Congratulations!

Your application has been accepted. You will receive further instructions via email regarding enrollment procedures, payment of fees, and other important information.

Please check your email regularly and ensure you complete all required steps before the deadline.

@endif @if(in_array($application->status, ['submitted', 'under_review', 'documents_pending', 'interview_scheduled']))

Application Under Review

Your application is being reviewed by our admissions team. You will be notified via email once a decision has been made.

@endif