@extends('pdf.layout') @section('title', 'Result Logic') @section('content') @php $i = 1; @endphp @include('include.report_header')

Result Logic of {{ $exam_name}} & Year-{{ request()->get('exam_year') }}


@foreach($data as $item) @php if($item['all_passed'] == 0){ $item['all_passed'] = 'Not All'; }else{ $item['all_passed'] = 'All'; } if($item['is_reported'] == 0){ $item['is_reported'] = ''; }else{ $item['is_reported'] = 'Yes'; } if($item['is_withheld'] == 0){ $item['is_withheld'] = ''; }else{ $item['is_withheld'] = 'Yes'; } if($item['is_incourse_withheld'] == 0){ $item['is_incourse_withheld'] = ''; }else{ $item['is_incourse_withheld'] = 'Yes'; } if($item['is_cancelled'] == 0){ $item['is_cancelled'] = ''; }else{ $item['is_cancelled'] = 'Yes'; } @endphp @php $i++; @endphp @endforeach
SL. Result Type Name Pass Status Theory Pass Count Fail Count Absent Count Is Reported Is Withheld Is Incourse Withheld Is Cancelled
{{ $i }} {{ $item['result_type_name'] }} {{ $item['all_passed'] }} {{ $item['passed_count'] }} {{ $item['failed_count'] }} {{ $item['absent_count'] }} {{ $item['is_reported'] }} {{ $item['is_withheld'] }} {{ $item['is_incourse_withheld'] }} {{ $item['is_cancelled'] }}






_____________________________
Controller of Examination
National University
Bangladesh






@include('include.generated_on') @stop