@extends('portal.layouts.app', [ 'class' => '', 'elementActive' => '' ]) @section('title', 'Selected Candidates') @section('css') @endsection @section('content')

Selected Candidates Progress

@foreach($data as $index => $item) @php $documents = collect($item->application->candidate->documents); @endphp {{-- Passport --}} {{-- Good Conduct --}} {{-- Offer Letter --}} {{-- Medical --}} {{-- MOFA --}} {{-- Attestation --}} @endforeach
# Candidate Job Passport Good Conduct Offer Letter Medical MOFA Attestation
{{ $index + 1 }} {{ $item->application->candidate->user->name }} {{ $item->application->job->title }} @if($item->application->candidate->passport_number) @else @endif @if($documents->firstWhere('type', 'good_conduct')) @else @endif @if($documents->firstWhere('type', 'offer_letter')) @else @endif @if($documents->firstWhere('type', 'medical')) @else @endif @if($documents->firstWhere('type', 'mofa')) @else @endif @if($documents->firstWhere('type', 'attestation')) @else @endif
@endsection @section('script') @endsection