@extends('pdf.layout') @section('title', 'Statistics of Result') @section('content') @include('include.report_header')

{{ strtoupper($data['exam_name']) }} EXAMINATION {{ request()->get('exam_year') }}
STATISTICS OF RESULT

@php $i = 1; $total_student = 0; $total_pass = 0; $average_pass_percentage = 0; @endphp @foreach($data['subject_wise_result_statistics'] as $dt) @php $i++; $total_student += $dt['total_student']; $total_pass += $dt['total_pass']; @endphp @endforeach
S1. Subject Code & Name Total Student Total Pass Percent of Pass
{{ $i }} {{ $dt['subject_code'] }}-{{ $dt['subject_name'] }} {{ $dt['total_student'] }} {{ $dt['total_pass'] }} {{ number_format((float)$dt['percentage_of_pass'], 2, '.', '') }}

Total -

{{ $total_student }}

{{ $total_pass }}

{{ number_format((float)($total_pass / $total_student) * 100, 2, '.', '') }}


@include('include.generated_on') @stop