@extends('admin.layouts.app') @section('title', 'Application — ' . $application->form_number) @section('breadcrumb')
Application No: {{ $application->form_number }} | Applied: {{ $application->created_at->format('d M Y') }} | @php $statusLabels = [ 'step1_complete' => 'Step 1 Completed', 'payment_completed' => 'Payment Completed', 'submitted' => 'Document Submitted', 'application_selected' => 'Shortlisted', 'verified' => 'Admitted', ]; $label = $statusLabels[$application->status] ?? ucfirst(str_replace('_', ' ', $application->status)); @endphp {{ $label }}
| Full Name | {{ $application->applicant_name ?? '--' }} |
| Date of Birth | {{ $application->date_of_birth->format('d M Y') }} |
| Gender | {{ ucfirst($application->gender) }} |
| Religion | {{ $application->religion ?? '—' }} |
| Category | {{ $application->category ?? '—' }} |
| Mobile | {{ $application->contact_no ?? '--' }} |
| {{ $application->whatsapp_no ?? '—' }} | |
| {{ $application->email ?? '--' }} | |
| Aadhar No. | {{ $application->aadhar_no ?? '—' }} |
| Differently Abled | {{ $application->differently_abled == 1 ? 'Yes' : 'No' }} |
| Nationality | {{ $application->nationality ?? '--' }} |
| Scholarship | {{ strtoupper($application->scholarship ?? '--') }} |
| Aadhaar Number | {{ $application->aadhaar_number ?? '--' }} |
| Applied For | {{ $application->course ?? '--' }} |
| Subject | {{ $application->subject ?? '--' }} |
| HS % | {{ $application->percentage ?? '—' }}% |
| HS Subjects | {{ collect($subjects)->pluck('name')->implode(', ') }} |
| Year of Passing H.S | {{ $application->hs_passing_year ?? '—' }} |
| Name of the Board | {{ $application->board_name ?? '—' }} |
| Previous Institution | {{ $application->prev_institution ?? '—' }} |
| Previous Institution Address | {{ $application->prev_institution_address ?? '—' }} |
| H.S.Reg No. | {{ $application->hs_reg_no ?? '—' }} |
| Year of Graduation | {{ $application->year_of_graduation ?? '—' }} |
| University Name | {{ $application->university_name ?? '—' }} |
| University Registration No. | {{ $application->university_reg_no ?? '—' }} |
| NAD / ABC ID | {{ $application->nad_abc_id ?? '—' }} |
| Degree Status | {{ $application->degree_status == 'final_declared' ? 'Final Declared' : 'Final Awarded' }} |
| Results Declaration Date | {{ $application->results_declaration_date ?? '—' }} |
| {{ $application->type == 2 ? 'Semester' : 'Subject' }} | Full Marks | Marks Obtained |
|---|---|---|
| {{ $sub['name'] ?? '—' }} | {{ $sub['full_marks'] ?? '—' }} | {{ $sub['marks_obtained'] ?? '—' }} |
| Total | {{ $totalFullMarks }} | {{ $totalMarksObtained }} |
| Percentage | {{ $percentage !== null ? $percentage . '%' : '—' }} | |
| Student Code | {{ $application->student->student_code }} |
| Roll No | {{ $application->student->roll_no ?? '—' }} |
| Semester | {{ $application->student->current_semester }} |