Filter

Reset

Statistics

Note: The only result here is for posted results ONLY not all results.

@foreach ( $collection as $key => $group )
@if (!(count($homeworks_and_students) == 0) or !(count($quizzes_and_students) == 0) ) @if ($has_grade_schema) @endif {{-- @php $labels = []; @endphp @foreach ($quizzes_titles as $item) @php array_push($labels, $item->title); @endphp @endforeach @foreach ($assignments_titles as $item) @php array_push($labels, $item->title); @endphp @endforeach --}} @foreach ($group[0] as $student) @php $quiz_label = []; $quiz_data = []; $home_label = []; $home_data = []; @endphp @foreach ($chart_collection[$key][$student[0]->id] as $item) @if ($item[0] == 'quiz') @php $label = str_replace(',', '_', $item[1]); $label = str_replace('"', '', $label); $label = str_replace("'", '', $label); array_push($quiz_label, $label); array_push($quiz_data, $item[2]); // array_push($home_label, ''); // array_push($home_data, ''); @endphp @else @php $label = str_replace(',', '_', $item[1]); $label = str_replace('"', '', $label); $label = str_replace("'", '', $label); array_push($home_label, $label); array_push($home_data, $item[2]); // array_push($quiz_label, ''); // array_push($quiz_data, ''); @endphp @endif @endforeach @if ($has_grade_schema) @endif @endforeach
# Student Total Graded Missed Persantage Progress Expected Grade
{{ $counter + 1 }} {{ $student[0]->first_name }} {{ $student[0]->middle_name }} {{ $student[0]->last_name }} {{ $student->graded + $student->missed }} {{ $student->graded }} {{ $student->missed }} {{ round(($student->ratio * 100), 2) }}%
{{ $student->expected_sign }}
@else

No data been found

@endif {{-- begin:pagination --}} {{--
{{ $students->appends(Request::except('page'))->render('components._pagination') }}

Displaying {{ $students->count() }} of {{ $students->total() }} student(s).

--}} {{-- end:pagination --}}
@endforeach