@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
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, '.', '') }} |