@extends('pdf.layout') @section('title', 'Examiner Standard Evaluation Report') @section('content') @foreach($data_array as $data_item) @php $chunk_size = 3; $total = 0; @endphp @foreach(array_chunk($data_item['examiners']->toArray(), $chunk_size) as $chunk) @include('include.report_header')

Name Examination Year: {{$data_array[0]['exam_name']}} - {{ $data_array[0]['year'] }}

Statement of Total Examiner Scrutinize Script

Subject: {{ $data_array[0]['subjects'][0]['code'] }}-{{ $data_array[0]['subjects'][0]['title'] }}

Paper: {{ $data_array[0]['papers'][0]['code'] }}-{{ $data_array[0]['papers'][0]['title'] }}

@foreach($chunk as $item) @php $total += $item['total_scan_qty'] @endphp @endforeach
Examiner's
Code (According to
Serial)
Name, Designations, College, Address & A/C No. of Examiner Number of
Script
Number of
Error
Total Days
of Delay(If any)
Only use for
Department of Accounts
Total
Remune
ration
(Without
Deduction)
Bill No.
{{ $item['examiner_code'] }} Name: {{ $item['examiner_name'] }}
@php $designation = isset($item['details']['designation_name']) ? $item['details']['designation_name'] : ''; $college_code = isset($item['details']['college_code']) ? $item['details']['college_code'] : ''; $college_name = isset($item['details']['college_name']) ? $item['details']['college_name'] : ''; $district = isset($item['details']['district_name']) ? $item['details']['district_name'] : ''; @endphp Designation: {{ $designation }}
Subject Name: {{ $item['subjects'][0]['subject_name'] }} Sub. Code: {{ $item['subjects'][0]['subject_code'] }}
College Code:{{ $college_code }} College Name: {{ $college_name}}Dist: {{ $district }}
Name of Bank: Sonali Bank Ltd.
Branch Name: {{$item['branch_name']}}
Account No. {{$item['account_no']}}
TIMS Pin No. {{ $item['tims_id'] }}
{{ $item['total_scan_qty'] }}{{ $item['number_of_error'] }} {{ $item['total_day_of_delay'] }}    
Total = {{ $total }}

Signature: of Head Examiner: ____________
Name : {{ $data_item['examiner_name'] }}
Subject Name: {{ $data_item['subjects'][0]['title'] }}      Subject Code: {{ $data_item['subjects'][0]['code'] }}
Head Examiner Code: {{ $data_item['examiner_code'] }}

Section Officer
Asst. Controller of Examination
Deputy Controller of Examination
Controller of Examination
@include('include.page_break') @endforeach @endforeach @stop