@extends('company.layouts.main') @section('content')
Back

Show Virtual Task response

Quetion Answers

@foreach($task_responses as $task_key=> $task_response)

Task : {{$task_key+1}}

@foreach($task_response->wepTaskAnswers as $key=> $wepTaskAnswer)
{{$key+1}}. Question: {{$wepTaskAnswer->taskQuestion->question_text}}
Answer: {{$wepTaskAnswer->selected_option}} {{$wepTaskAnswer->paragraph_response}} @if($wepTaskAnswer->uploaded_file) Download @endif @endforeach
@endforeach
@endsection