@if(request()->get('document_type') == '.pdf')
|
National University
Bangladesh
|
Date: 19/07/2025
|
{{$exam_name}} - {{request()->get('exam_year')}}
TOTAL SUBJECTS: {{$show_data->count()}}
@endif
SL |
Subject Code & Name |
Total Students |
@forelse($show_data as $key => $item)
{{(($show_data->currentPage() - 1) * $show_data->perPage()) + $loop->iteration}}
|
{{$item['subject_code']}} - {{$item['subject_name']}}
|
{{$item['total_student']}}
|
@empty
Data Not Available
|
@endforelse
@if($show_data->count() > 0)
Total
|
{{$show_data->sum('total_student')}}
|
@endif
@if(request()->get('document_type') != '.pdf')
{{ $show_data->appends(request()->all())->links() }}
@endif