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

Examiner's Standard Evaluatuin Report Form For Masters Final-{{ $data_array[0]['year'] }}


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 & Address Number of
Examined
Script
Number of
Error
Statement
of Error
Total Day
of Delay
Examiner's
Standard
{{ $item['examiner_code'] }}

Name: {{ $item['examiner_name'] }}
@php if( isset($item['details']['designation_name']) && isset($item['details']['college_code']) && isset($item['details']['college_name']) && isset($item['details']['district_name']) ){ $designation = $item['details']['designation_name']; $college_code = $item['details']['college_code']; $college_name = $item['details']['college_name']; $district = $item['details']['district_name']; }else{ $designation = ' '; $college_code = ' '; $college_name = ' '; $district = ' '; } @endphp Designation: {{ $designation }}
Subject: {{ $item['subjects'][0]['subject_name'] }} Sub/Code: {{ $item['subjects'][0]['subject_code'] }}
College Code:{{ $college_code }} College Name: {{ $college_name}}
TIMS ID: {{ $item['tims_id'] }} Dist: {{ $district }}

{{ $item['total_scan_qty'] }}{{ $item['number_of_error'] }} {{ $item['statement_of_error'] }} {{ $item['total_day_of_delay'] }} {{ $item['examiner_standard'] }}
Total = {{ $total }}

Examiner's Standard
A Best
B Satisfactory
C Below Standard

Signature: ______________________________________
Name of Head Examiner: {{ $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'] }}


@include('include.generated_on') @include('include.page_break')
@endforeach @endforeach @stop