@extends('pdf.layout')
@section('title', $report_title)
@section('content')
@foreach($students_arr as $candidate_item)
@php
$chunk_size = 25;
$key = 1;
$total_practical_candidate = 0;
$total_viva_candidate = 0;
@endphp
@foreach(array_chunk($candidate_item['college_data'], $chunk_size) as $chunk)
@include('include.report_header')
SL | College Code & Name | Practical Student Count | Viva Student Count | Remarks |
---|---|---|---|---|
{{ $key++ }} | {{ $item['college_code'] }}-{{ $item['college_name'] }} | {{ $item['total_practical_student'] }} | @php $total_practical_candidate += $item['total_practical_student'] @endphp{{ $item['total_viva_student'] }} | @php $total_viva_candidate += $item['total_viva_student'] @endphp|
Total Student = | {{ $total_practical_candidate }} | {{ $total_viva_candidate }} |