{{ ___('examination.student_and_mark') }}
@foreach ($data['students'] as $item) @endforeach
{{ ___('student_info.student_name') }} {{ ___('examination.total_mark') }} {{ ___('examination.mark_distribution') }}

{{ $item->student->first_name }} {{ $item->student->last_name }}

{{ @$data['examAssign']->total_mark }}

@foreach (@$data['examAssign']->mark_distribution as $row)

{{ @$row->title }}

@foreach ($data['marks_register']->marksRegisterChilds as $child) @if ($child->student_id == $item->student_id && $child->title == $row->title)

{{ @$child->mark }}

@endif @endforeach
@endforeach
{{-- --}}