@extends('backend.layouts.app')
@section('head')
@endsection
@section('content')
Grade |
{{$exam->grade->name}} |
Section |
@php
$sections = \App\Models\Section::whereIn('id', json_decode($exam->section_id, true))->get();
@endphp
@foreach ($sections as $val)
@endforeach |
Date and Time |
{{date('d M Y, h:i A', strtotime($exam->date_and_time))}} |
Duration |
@php
$hour = floor($exam->duration / 60);
$min = $exam->duration % 60;
@endphp
{{$hour.': '.$min.'0 Hours'}} |
Instruction |
{{$exam->description}} |
# |
SECTIONS |
NO. OF ITEMS |
MEAN |
MEAN % |
FOR IMPROVEMENT |
STANDARD LEVEL |
Action |
@if(!empty($data_sections))
@foreach($data_sections as $key => $value)
{{ $loop->iteration }} |
{{$value['name']}} |
{{$value['total_ques']}} |
{{$value['mean']}} |
{{$value['mean_score']}}% |
{{$value['for_improvement']}}% |
{{$value['standard']['grade']}} |
|
@endforeach
@endif
# |
Competency |
Average Score |
Standard Level |
@if(!empty($data))
@foreach($data as $key => $result)
{{ $loop->iteration }} |
{!! $result['name'] !!} |
{{$result['score']}}% |
{{$result['standard']['grade'] ?? 'N/A'}} |
@endforeach
@endif
@if(!empty($sec_compentencies))
@foreach ($sec_compentencies as $section_name => $compentencies)
# |
Competency |
Score % |
Standard Level |
@if(!empty($compentencies))
@foreach($compentencies as $key => $compentency)
{{ $loop->iteration }} |
{{$compentency['name']}} |
{{$compentency['score']}}% |
{{$compentency['standard']['grade']}} |
@endforeach
@endif
{{--
--}}
@endforeach
@endif
@endsection
@section('script')
@endsection