@foreach ($datas['questionAnswerData'] as $key => $data)
{{ is_null(request('page')) ? 'Câu hỏi : ' . $key + 1 : 'Câu hỏi ' . (request('page') - 1) * 2 + ($key + 1) . ': ' }}
{!! $data->question_text !!}
@if (!is_null($data->result))
@foreach (json_decode($data->choices) as $choice)
@endforeach
@endif
Giải thích:
{!! $data->answer_text !!}
@endforeach
{{ $datas['questionAnswerData']->links('admin.elements.admin-paginate') }}