@forelse($data as $key => $app) @empty @endforelse
# DBA Processor Status Sales Rep Completion Submitted At Actions
{{ ($data instanceof \Illuminate\Pagination\LengthAwarePaginator ? $data->firstItem() + $key : $key + 1) }} {{ $app->dba ?: ($app->legal_name ?: 'Application #' . $app->id) }} {{ $app->processorInfo->value_name ?? '—' }} @php($st = $statuses[$app->turbo_app_status] ?? null) @if($st) {{ $st['name'] }} @else Unknown @endif {{ $app->owner->full_name ?? '—' }} @if($app->turbo_app_status == 1)
{{ $app->turbo_app_completion_pct }}%
@else @endif
{{ $app->turbo_app_submitted_at ? $app->turbo_app_submitted_at->format('M d, Y') : '—' }}
@if($app->turbo_app_status == 1) Resume @else @endif @if(($permission['destroy'] ?? false) && $app->turbo_app_status == 1)
@csrf @method('DELETE')
@endif
No applications found.
@if($data instanceof \Illuminate\Pagination\LengthAwarePaginator && $data->hasPages())
Showing {{ $data->firstItem() }} to {{ $data->lastItem() }} of {{ $data->total() }} applications
{{ $data->appends(request()->query())->links() }}
@endif