For the given inputs, test results are not found.
@else
@foreach ($data_tests as $data_test)
Test: {{$data_test['test']}}
@php
$stt = 1;
@endphp
@foreach ($data_test['branchs'] as $branch)
Total Students - {{ $branch['student']['Total Assigned Students'] }}
Total Present - {{ $branch['student']['Total Present Number'] }}
@push('script')
{{-- Overall performance chart --}}
@php
$overall_labels = array_keys($branch['section']['OverallPerf']);
$overall_data = array_values($branch['section']['OverallPerf']);
@endphp
{{-- Section wise performance chart --}}
@php
$section_labels = array_values($branch['section']['subjects']['subjects']);
$need_training_data = array_values($branch['section']['subjects']['ByPerf']['Need Training']);
$need_practice_data = array_values($branch['section']['subjects']['ByPerf']['Need Practice']);
$performers_data = array_values($branch['section']['subjects']['ByPerf']['Performers']);
@endphp
{{-- Timer chart --}}
@php
$timer_data = array_values($branch['section']['time']);
@endphp
@php
$stt = $stt + 1;
@endphp
@endpush
@endforeach
@endforeach
@endif