@if($data['worksheet_type'] == 'question' || $data['worksheet_type'] == '')
{{ ucwords(strtolower($data['display_title'])) }}
@if(count($data['questions'])>0) @php $qno = 1;$t=0; $count = count($data['questions']); @endphp @for($i=0;$i<$count;$i++) @if($i < 20) @endif @php $qno++;$s =1; @endphp @endfor @endif
{{ $qno }}. {!! ucfirst(strtolower($data['questions'][$i])) !!}
@endif
@if($data['worksheet_type'] == 'answer' || $data['worksheet_type'] == '')
{{ ucwords(strtolower($data['display_title'])) }} @if(isset($data['display_title']) && $data['display_title'] != '') - @endif Answers
@if(count($data['answers'])>0) @php $ano = 1; @endphp @foreach($data['answers'] as $key=>$answer) @php $ano++; @endphp @endforeach @endif
{{ $ano }}. {!! ucfirst(strtolower($answer)) !!}
@endif