Applications by Status

@if($officeApplications->isEmpty())
No applications found for this status.
@else
@foreach($officeApplications as $index => $app) @endforeach
# Application Number Service Status Submitted At
{{ $index + 1 }} {{ $app->application_number }} {{ $app->service->name }} {{ ucfirst($app->status) }}
{{ $app->created_at->format('F j, Y') }}
@endif