Surveys
@foreach($answers['process']['employees'] AS $employee)
Employee: {{ $employee['last_name'].' '.$employee['first_name'] }}
NÂș |
Questions |
Answers |
@foreach($answers['survey']['questions'] AS $question)
{{ $question['id'] }} |
{{ $question['question'] }} |
@foreach($employee['answers'] AS $answer)
@if($answer['question_id'] == $question['id'])
@if($answer['option_id'] == null)
{{ $answer['value'] }}
@else
@foreach($question['options'] AS $option)
@if($option['id'] === $answer['option_id'] AND $answer['value'] !== null)
-
{{ $option['option'] }}
@if($question['type'] == 'decimal')
- {{ $answer['value'] }} Hrs
@endif
@endif
@endforeach
@endif
@endif
@endforeach
|
@endforeach
@endforeach