@foreach($careerPaths as $key=>$careerPath)
| Title |
Is Submit ? |
Is Completed ? |
Correct (%) |
Submited Date |
Action |
@foreach($careerPath->careerPath->careerPathNotificationAchievement as $achievement)
| {{$achievement->name}} |
{!! ($achievement->submit_status == 1) ? ' Submitted ' : 'Not Submitted ' !!} |
{!! ($achievement->submit_status == 1) ? (($achievement->complete_status == 1 && $achievement->need_admin_res == 0) ? ' Completed ' : (($achievement->complete_status == 0 && $achievement->need_admin_res == 0) ? 'Rejected ' : 'Pending ')) : '' !!} |
{{($achievement->submit_status == 1) ? '('.$achievement->score.'/'.$achievement->total_question.') '. $achievement->percentage .'%' : ''}} |
{{ ($achievement->submit_status == 1) ? date('m/d/Y',strtotime($achievement->submit_date)): ''}} |
|
@endforeach
@endforeach