@extends('layouts.admin') @section('title', 'Application Dossier - ' . $application->application_no) @section('header_title', 'Applicant Dossier') @section('content')
Back to Submissions {{ $application->application_no }}
Email Preview Preview PDF Download Official PDF Print Slip
@if($application->photo_doc) Photo @else
@endif

{{ $application->name }}

{{ $application->district }} {{ $application->membership_category ?: 'Ordinary' }}
Father's / Spouse's Name: {{ $application->father_spouse_display }} Membership No: @if($application->status === 'approved' && $application->membership_no) {{ $application->membership_no }} @else Pending Approval @endif
@if($application->status == 'pending') @endif Status: {{ ucfirst(str_replace('_', ' ', $application->status)) }} Submitted: {{ $application->created_at->format('d M Y, h:i A') }}
@if($application->admin_notes)
Admin Remarks / Notes:
{{ $application->admin_notes }}
@endif
A. Personal & Contact Details
Full Name {{ $application->name }}
Father's / Spouse's Name {{ $application->father_spouse_display }}
Date of Birth {{ $application->dob ? $application->dob->format('d M Y') : 'N/A' }}
Blood Group {{ $application->blood_group ?? 'N/A' }}
Residential Address
{{ $application->full_resident_address }}
Alternative Mobile
{{ $application->alt_mobile_number ?: 'N/A' }}
PAN Number {{ $application->pan_number }}
Aadhaar Number {{ $application->aadhaar_number ?: 'N/A' }}
B. Professional Details
Firm / Office Name {{ $application->firm_name ?: 'N/A' }}
Designation / Status {{ $application->designation ?: 'N/A' }}
Years of Practice {{ $application->years_of_practice ?: 'N/A' }}
Professional Address
{{ $application->full_office_address ?: 'Same as Resident' }}
Chapter / Association {{ $application->chapter_association ?: 'N/A' }}
Reference / Proposed By {{ $application->reference_proposed_by ?: 'N/A' }}
Professional Qualification {{ $application->professional_qualification ?: ($application->education_qualification ?: 'N/A') }}
Other Qualification {{ $application->other_qualification ?: 'N/A' }}
GSTIN {{ $application->gstin ?: 'N/A' }}
C. Tax / Professional Registration Details
Qualification / Registration Registration No. Year Experience
STP (Sales Tax Practitioner) {{ $application->reg_stp_no ?: '-' }} {{ $application->reg_stp_year ?: '-' }} {{ $application->reg_stp_exp ?: '-' }}
VAT (Value Added Tax) {{ $application->reg_vat_no ?: '-' }} {{ $application->reg_vat_year ?: '-' }} {{ $application->reg_vat_exp ?: '-' }}
GSTP (GST Practitioner) {{ $application->reg_gstp_no ?: '-' }} {{ $application->reg_gstp_year ?: '-' }} {{ $application->reg_gstp_exp ?: '-' }}
ITP (Income Tax Practitioner) {{ $application->reg_itp_no ?: '-' }} {{ $application->reg_itp_year ?: '-' }} {{ $application->reg_itp_exp ?: '-' }}
CTPr (Commercial Tax Practitioner) {{ $application->reg_ctpr_no ?: '-' }} {{ $application->reg_ctpr_year ?: '-' }} {{ $application->reg_ctpr_exp ?: '-' }}
D. Nominee Details (Part II)
Nominee Name {{ $application->nominee_name ?: ($application->nominee ?: 'N/A') }}
Relationship {{ $application->nominee_relationship ?: 'N/A' }}
Date of Birth {{ $application->nominee_dob ? $application->nominee_dob->format('d M Y') : 'N/A' }}
Mobile Number {{ $application->nominee_mobile ?: 'N/A' }}
Nominee Address
{{ $application->nominee_address ?: 'N/A' }}
E. Uploaded Documents & Certificates
@php $docs = [ ['label' => 'Passport Photo', 'path' => $application->photo_doc, 'icon' => 'bi-person-square'], ['label' => 'PAN Card Copy', 'path' => $application->pan_card_doc, 'icon' => 'bi-file-earmark-person'], ['label' => 'Aadhaar Card Copy', 'path' => $application->aadhaar_card_doc, 'icon' => 'bi-card-checklist'], ['label' => 'Payment Proof / Receipt', 'path' => $application->payment_proof_doc, 'icon' => 'bi-receipt-cutoff'], ['label' => 'STP Certificate', 'path' => $application->stp_cert_doc, 'icon' => 'bi-award'], ['label' => 'VAT Certificate', 'path' => $application->vat_cert_doc, 'icon' => 'bi-award'], ['label' => 'GSTP Certificate', 'path' => $application->gstp_cert_doc, 'icon' => 'bi-award'], ['label' => 'ITP Certificate', 'path' => $application->itp_cert_doc, 'icon' => 'bi-award'], ['label' => 'CTPr Certificate', 'path' => $application->ctpr_cert_doc, 'icon' => 'bi-award'], ['label' => 'Other Tax Certificate', 'path' => $application->tax_cert_doc, 'icon' => 'bi-award-fill'], ['label' => 'Qualification Certificate', 'path' => $application->qualification_cert_doc, 'icon' => 'bi-mortarboard'], ['label' => 'Address Proof', 'path' => $application->address_proof_doc, 'icon' => 'bi-geo-alt'], ]; @endphp @foreach($docs as $doc)
{{ $doc['label'] }}
{{ $doc['path'] ? basename($doc['path']) : 'Not uploaded' }}
@if($doc['path']) View Document @else Not Attached @endif
@endforeach
F. Welfare / Insurance Details (Optional)
Height: {{ $application->height ?: 'N/A' }}
Weight: {{ $application->weight ?: 'N/A' }}
Policy No: {{ $application->insurance_policy_no ?: 'N/A' }}
Remarks: {{ $application->insurance_remarks ?: 'None' }}
G. Declaration & Office Status
Place: {{ $application->declaration_place ?: '-' }}
Date: {{ $application->declaration_date ? $application->declaration_date->format('d M Y') : $application->created_at->format('d M Y') }}
Office Verified: {{ $application->office_verified ?: 'Pending' }}
Membership Approved: {{ $application->office_approved ?: ($application->status == 'approved' ? 'Yes' : 'Pending') }}
Receipt No: {{ $application->office_receipt_no ?: 'N/A' }}
Amount Received: ₹ {{ $application->office_amount_received ?: 'N/A' }}
Office Action Date: {{ $application->office_date ? $application->office_date->format('d M Y') : '-' }}
Approved / Verified By: {{ $application->office_approved_by ?: '-' }}
@php $suggestedMNo = $application->membership_no ?: \App\Models\MembershipApplication::generateNextMembershipNo($application->membership_category); @endphp @endsection