@extends('layouts.admin') @section('title', 'Membership Applications Registry') @section('header_title', 'All Membership Applications') @section('content')
| Photo | App No & Applicant | District | PAN / Aadhaar | Contact | Status | Submitted | Actions |
|---|---|---|---|---|---|---|---|
|
@if($app->photo_doc)
|
{{ $app->name }}
{{ $app->application_no }}
@if($app->status === 'approved' && $app->membership_no)
{{ $app->membership_no }}
@endif
@if($app->membership_category)
{{ $app->membership_category }}
@endif
F/S: {{ $app->father_spouse_display }}
|
{{ $app->district }} |
PAN: {{ $app->pan_number }}
@if($app->aadhaar_number)
UID: {{ $app->aadhaar_number }}
@endif
|
{{ $app->whatsapp_number ?: $app->mobile_number }}
{{ $app->email }}
|
@if($app->status == 'pending') @endif {{ ucfirst(str_replace('_', ' ', $app->status)) }} | {{ $app->created_at->format('d M Y') }} |
@php
$suggestedMNo = $app->membership_no ?: \App\Models\MembershipApplication::generateNextMembershipNo($app->membership_category);
@endphp
|
| No applications found matching your criteria. | |||||||