Applications by Status

{{ ucfirst($status) }} applications

@if ($officeApplications->isEmpty())
No applications found

There are no {{ $status }} applications at this time.

@else
@foreach ($officeApplications as $index => $app) @endforeach
# Application # Service Applicants Status Submitted Actions
{{ $officeApplications->firstItem() + $index }}
{{ $app->application_number }}
{{ $app->service->getLocalized('name') }}
@if(!empty($app->hawasumaData['fullnames']))
@foreach(array_slice($app->hawasumaData['photo_paths'] ?? [], 0, 3) as $photo) @if(isset($photo)) Applicant photo @else
@endif @endforeach
{{ $app->hawasumaData['fullnames'][0] }}
@if(count($app->hawasumaData['fullnames']) > 1) +{{ count($app->hawasumaData['fullnames']) - 1 }} more @endif
@else No applicants @endif
@if($app->status == 'approved') @elseif($app->status == 'rejected') @else @endif {{ ucfirst($app->status) }} {{ $app->created_at->format('M d, Y') }}
{{ $app->created_at->format('h:i A') }}
@endif
@foreach ($officeApplications as $app) @endforeach