@extends('Training::layouts.app') @push('css') @endpush @section('content')
{{-- --}}
@foreach($trTestResponses as $trTestResponse)

{{ $loop->iteration }}/{{ $loop->count }} {{ $trTestResponse->question }}

@if($trTestResponse->answered == 'No')
@if($trTestResponse->type == 'Multiselect') @foreach($trTestResponse->options as $option)
@endforeach @elseif($trTestResponse->type == 'Radio') @foreach($trTestResponse->options as $option)
@endforeach @elseif($trTestResponse->type == 'Theory')
@endif
@else Answered already! @endif
@endforeach
@endsection @push('js') @endpush