@if(count($resultReport)>0)
@foreach($resultReport as $result)
@php
$today_time = Carbon\Carbon::now();
$today_time = strtotime($today_time->toDateTimeString());
$end_date = strtotime($result->end_date);
@endphp
| {{ $result->candidate_name }} |
{{ $result->candidate_email }} |
{{ round($result->total_percentage,1) }}% |
@if($today_time > $end_date)
@else
Waiting for candidate completion
@endif
|
{!! $result->is_published==1 ? 'Yes' : 'No' !!}
|
@if($result->score)
View Report
@else
Waiting for Evaluate
@endif
|
@endforeach
@else
No More Records
|
@endif