Applications List

{{$allApplicationCount}}

@foreach($applications as $application) @endforeach
No. App ID User Name Email/Phone Services Name Application Type Application Stage Date of Submission DB Link
{{ $loop->index}} {{ $application->application_number }} {{ $application->user->first_nm ?? '' }} {{ $application->user->last_nm ?? '' }} {{ $application->user->email_addr ?? 'N/A' }} / {{ $application->user->mobile_number ?? 'N/A' }} @php $services = []; foreach ($application->applicants as $applicant) { foreach ($applicant->applicationServices as $appService) { $serviceTitle = $appService->service->menu_title ?? $appService->service->title ?? 'Unknown'; if (!in_array($serviceTitle, $services)) { $services[] = $serviceTitle; } } } echo implode(', ', array_slice($services, 0, 2)); if (count($services) > 2) { echo ' +' . (count($services) - 2) . ' more'; } @endphp {{ ucwords(str_replace('_', ' ', $application->ordering_for)) }} @php $status = $application?->applicants?->first()?->applicationServices?->first()->status; @endphp @if($status === 'doc_under_review') Document Under Review @elseif($status === 'doc_recieved_under_review') Document Received & Under Review @elseif($status === 'missing_docs') Missing Documents @elseif($status === 'apostille_pending') Apostille Pending @elseif($status === 'form_fill') Form Filling @elseif($status === 'review_pending') Review Pending @elseif($status === 'notery_govtfee_pending') Notary / Govt Fee Pending @elseif($status === 'app_closed') Application Closed @elseif($status === 'review_rating_pending') Review & Rating Pending @elseif($status === 'final_closed') Final Closed @else {{ $status ? ucwords(str_replace('_', ' ', $status)) : 'N/A' }} @endif {{ $application->created_at->format('d M Y, h:i A') }}
{{--
Showing {{ $applications->firstItem() ?? 0 }} - {{ $applications->lastItem() ?? 0 }} of {{ $applications->total() }} entries
    @if ($applications->onFirstPage()) @else @endif @foreach ($applications->getUrlRange(1, $applications->lastPage()) as $page => $url)
  • {{ $page }}
  • @endforeach @if ($applications->hasMorePages()) @else @endif
--}}