@php $c = 0; @endphp
@foreach($answers as $a)
@php
++$c;
$q = App\Models\QuestionBank::where('id', $a->question_id)->first();
@endphp
Question {{ $c}}: {{ $q != null ? $q->question : '' }}
@if($q->file != null)
@endif
@endforeach
Result: {{ $mark != null ? $mark->result.' ('.$mark->mark_obtained.')' : '' }}