@extends('layouts.dashboard') @section('title', 'Application Details') @section('page-content')
Application #{{ $application->application_number }}
{{ $application->full_name }}
{{ $application->email }}
{{ $application->phone ?? 'N/A' }}
{{ $application->date_of_birth ? $application->date_of_birth->format('M d, Y') : 'N/A' }}
{{ $application->gender ?? 'N/A' }}
{{ $application->nationality ?? 'N/A' }}
{{ $application->state_of_origin ?? 'N/A' }}
{{ $application->lga ?? 'N/A' }}
{{ $application->address ?? 'N/A' }}
{{ $application->city ?? 'N/A' }}
{{ $application->state ?? 'N/A' }}
{{ $application->country ?? 'N/A' }}
{{ $application->postal_code ?? 'N/A' }}
{{ $application->guardian_name ?? 'N/A' }}
{{ $application->guardian_relationship ?? 'N/A' }}
{{ $application->guardian_phone ?? 'N/A' }}
{{ $application->guardian_email ?? 'N/A' }}
{{ $application->guardian_address ?? 'N/A' }}
{{ $application->program->name ?? 'N/A' }}
{{ $application->academicYear->name ?? 'N/A' }}
{{ str_replace('_', ' ', $application->admission_type ?? 'N/A') }}
{{ $application->jamb_reg_number }}
{{ $application->jamb_score }}/400
{{ $application->merit_score }}/100
{{ $edu['institution'] ?? 'N/A' }}
{{ $edu['qualification'] ?? 'N/A' }} - Grade: {{ $edu['grade'] ?? 'N/A' }} ({{ $edu['year'] ?? 'N/A' }})
{{ $application->review_notes }}
@if($application->reviewer)Reviewed by: {{ $application->reviewer->name }} on {{ $application->reviewed_at->format('M d, Y H:i') }}
@endif{{ $application->submitted_at ? $application->submitted_at->format('M d, Y H:i') : 'Not yet' }}
₦{{ number_format($application->application_fee ?? 0, 2) }}
{{ $application->fee_paid ? 'Paid' : 'Not Paid' }}