@extends('pdf.layout')
@section('title', 'Practical Candidate List')
@section('content')
@foreach($candidate_array as $candidate_item)
@foreach(array_chunk($candidate_item['student_list'], 20) as $chunk)
National University
Gazipur-1704, Bangladesh
{{ $chunk[0]['exam_name'] }} - {{ $chunk[0]['year'] }}
Practical Candidate List
|
Exam Code: {{ $chunk[0]['exam_code'] }}
No. Of Student: {{ $candidate_item['student_count'] }}
{{--
Note: REG → Regular, IRR → Irregular,
IMP → Improvement
--}}
Subject Code: {{ $chunk[0]['subject_code'] }}
Subject Name: {{ $chunk[0]['subject_name'] }}
Course Code: {{ $chunk[0]['paper_code'] }}
Course Name: {{ $chunk[0]['paper_name'] }}
|
Center Code & Name: [{{ $candidate_item['center_code'] }}] {{ $candidate_item['center_name'] }}
College Code & Name: [{{ $candidate_item['college_code'] }}] {{ $candidate_item['college_name'] }}
SL |
Exam Roll |
Reg. No. |
Session |
Name of Examinee |
Type |
Remarks |
@foreach($chunk as $key => $item)
{{ ++$key }} |
{{ $item['exam_roll'] }} |
{{ $item['reg_no'] }} |
{{ $item['session_year'] }} |
{{ $item['student_name'] }} |
{{ $item['student_type'] }} |
|
@endforeach
Examiner Seal & Sign
Date:
|
Center Head Seal & Sign
Date:
|
External Seal & Sign
Date:
|
@endforeach
@endforeach
@stop