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