@extends('admin.layouts.app') @section('title', 'Application — ' . $application->form_number) @section('breadcrumb') @endsection @section('content')
Personal Information
Basic Details
{{-- --}} {{-- --}}
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 ?? '--' }}
WhatsApp {{ $application->whatsapp_no ?? '—' }}
Email {{ $application->email ?? '--' }}
Aadhar No. {{ $application->aadhar_no ?? '—' }}
Differently Abled {{ $application->differently_abled == 1 ? 'Yes' : 'No' }}
Nationality {{ $application->nationality ?? '--' }}
Academic Details
@php $subjects = $application->subjects_marks ?? []; @endphp
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 ?? '—' }}%
Family Information
Father
{{ $application->father_name ?? '—' }}
{{ $application->father_occupation ?? '' }}
{{ $application->father_mobile ?? '' }}
Mother
{{ $application->mother_name ?? '—' }}
{{ $application->mother_occupation ?? '' }}
{{ $application->mother_mobile ?? '' }}
{{--
Annual Income
₹{{ $application->annual_family_income ? number_format($application->annual_family_income) : '—' }}
--}}
Address
Correspondence
{{ $application->address }},
{{ $application->pincode }}
Uploaded Documents
@if ($application->documents->count())
@foreach ($application->documents as $doc)
{{ in_array(pathinfo($doc->file_path, PATHINFO_EXTENSION), ['pdf']) ? '📄' : '🖼️' }}
{{ ucwords(str_replace('_', ' ', $doc->document_type)) }}
{{ $doc->original_filename }}
{{-- @if (!$doc->verified) @else @endif --}}
@endforeach
@else

No documents uploaded

@endif
Application Status
  • Application Submitted
    {{ \Carbon\Carbon::parse($application->created_at)->timezone('Asia/Kolkata')->format('d M Y, h:i A') }}
  • @if ($application->payment_status == 1)
  • Payment Completed
    {{--
    {{ \Carbon\Carbon::parse($application->application_selected_at)->timezone('Asia/Kolkata')->format('d M Y, h:i A') }}
    --}}
  • @endif @if ($application->application_selected == 1)
  • Application Selected
    {{ \Carbon\Carbon::parse($application->application_selected_at)->timezone('Asia/Kolkata')->format('d M Y, h:i A') }}
  • @endif @if ($application->admitted == 1)
  • Admitted
    {{ \Carbon\Carbon::parse($application->admitted_at)->timezone('Asia/Kolkata')->format('d M Y, h:i A') }}
  • @endif
@if ($application->status === 'admitted' && $application->student)
Student Details
Student Code {{ $application->student->student_code }}
Roll No {{ $application->student->roll_no ?? '—' }}
Semester {{ $application->student->current_semester }}
View Student Profile
@endif
@endsection @push('scripts') @endpush