@if(request()->get('document_type') == '.pdf')
|
National University
Bangladesh
|
Date: 19/07/2025
|
COLLEGE WISE STUDENT COUNT AND FEE LIST
{{$exam_name}} - {{request()->get('exam_year')}}
TOTAL CANDIDATE: {{$show_data->sum('total')}}
@endif
SL |
Collge Code & Name |
Total Candidate |
Total Fee |
@forelse($show_data as $key => $item)
{{(($show_data->currentPage() - 1) * $show_data->perPage()) + $loop->iteration}}
|
{{$item['college_code']}} - {{$item['college_name']}}
|
{{$item['total']}}
|
{{$item['total_amount']}}
|
@empty
Data Not Available
|
@endforelse
@if($show_data->count() > 0)
Total
|
{{$show_data->sum('total')}}
|
{{$show_data->sum('total_amount')}}
|
@endif
@if(request()->get('document_type') != '.pdf')
{{ $show_data->appends(request()->all())->links() }}
@endif