{{ ucwords(strtolower($data['display_title'])) }}: Questions
@foreach($data['units'] as $unit)
{{ $unit->name }}
@foreach($unit->questionList as $index=>$qstn) @if(count($unit->questionList)>0) @php $index++; @endphp
{{ $index }}. {!! nl2br(e($qstn)) !!}
@endif @endforeach
@endforeach
{{ ucwords(strtolower($data['display_title'])) }}: Answers
@foreach($data['units'] as $unit)
{{ $unit->name }}
@foreach($unit->answerList as $index=>$answr) @if(count($unit->answerList)>0) @php $index++; @endphp
{{ $index }}. {!! nl2br(e($answr)) !!}
@endif @endforeach
@endforeach