ID |
Candidate Name |
Email |
Mobile |
DOB |
Status |
Resume |
Apply Date |
Action |
@if(!empty($result))
@foreach($result as $row)
@php $select = App\Models\InterviewHistory::where('interview_id',$row->id)->count();@endphp
{{$loop->iteration}} |
{{$row->salutation}} {{$row->first_name}} {{$row->middle_name}} {{$row->last_name}} |
{{$row->email}} |
{{$row->mobile}} |
{{date_format(date_create($row->dob),"d-M-Y")}} |
{{$row->status}} |
@if(!empty($row->resume))@endif |
{{date_format(date_create($row->created_at),"d-M-Y H:i")}} |
@if($select>0)
@if($row->status=='Shortlist')
Reschedule Interview@endif
@else
@if($row->status=='Shortlist')
Schedule Interview@endif
@endif
|
@endforeach
@endif