| Job Title: | {{ $trTestParticipant->selectedCandidate->jobs->jobTitle->name }} | @endif
| Total Question: | {{ $trTestParticipant->trTestResponses()->totalQuestion()}} |
| Correct Answer: | {{ $trTestParticipant->trTestResponses()->correctAnswer() }} |
| Theory Answer: | {{ $trTestParticipant->trTestResponses()->theoryQuestion() }} |
| Total Marks: | {{ $trTestParticipant->trTestResponses()->totalMarks() }} |
| Result: | {{ +$trTestParticipant->obtained }} ({{ +$trTestParticipant->percentage }}%) |
| {{ $loop->iteration }}/{{ $loop->count }} {{ $trTestResponse->question }} @if($trTestResponse->type == 'Theory') {!! $trTestResponse->is_evaluated ? '(Evaluated)' : '(Not Evaluated)' !!} @else {!! $trTestResponse->is_correct ? '(Correct)' : '(Wrong)' !!} @endif |
|
@if($trTestResponse->type == 'Multiselect')
@foreach($trTestResponse->options as $options)
@if(in_array($options, $trTestResponse->user_answer))
@if(in_array($options, $trTestResponse->user_answer))
{{ head($trTestResponse->user_answer) }} @endif |