@if($info)


@isset($info)
Trainee Name: {{ $info->full_name }}
Course Name: {{ $info->title }}
Venue Name: {{ $info->venue_name }}
Batch Name: {{ $info->batch_name }}
@endisset
@php $total_mark = 0; $obtain_mark = 0; @endphp @forelse ($marksheets as $key=>$mark) @php $total_mark += $mark->total_marks; $obtain_mark += $mark->marks; @endphp @empty @endforelse @if($total_mark != 0) @endif
Test Type Topics Total Marks Obtained Marks
{{ $mark->typs }} {{ $mark->topics }} {{ $mark->total_marks }} {{ $mark->marks }}
Total {{ $total_mark }} {{ $obtain_mark }}
@else
No data found for this trainee
@endif