LAPORAN PROGRES MATA PELAJARAN

Dicetak pada: {{ \Carbon\Carbon::now()->translatedFormat('d F Y H:i') }}

Biodata Guru

Nama : {{ $teacher?->user?->name ?? '-' }}
NIP : {{ $teacher?->nip ?? '-' }}
Status : {{'Guru Pengampu' }}
Jenis Guru : {{ $teacher?->jenis ?? '-' }}
Jurusan : {{ $teacher?->department?->name ?? '-' }}
Kelas : {{ $moduleClass?->studentClass?->name ?? '-' }}

Detail Progres Mata Pelajaran

@foreach($data as $row) @endforeach
Mata Pelajaran Bab Materi Tugas Quiz Progres Total
{{ $row->moduleStudentClass?->module?->title ?? '-' }} {{ $row->total_sections ?? 0 }} {{ $row->total_lessons ?? 0 }} {{ $row->total_tasks ?? 0 }} {{ $row->total_quizzes ?? 0 }}
{{ $row->progress_total ?? 0 }}%
{{-- PERSIAPAN DATA UNTUK GRAFIK --}} @php $chartLabels = []; $chartSections = []; $chartLessons = []; $chartTasks = []; $chartQuizzes = []; $chartProgress = []; foreach($data as $row) { // Menggabungkan nama modul dan kelas sebagai label $chartLabels[] = ($row->moduleStudentClass?->module?->title ?? 'Modul') . ' - ' . ($row->moduleStudentClass?->studentClass?->name ?? 'Kelas'); // Ekstrak nilai metrik $chartSections[] = $row->total_sections ?? 0; $chartLessons[] = $row->total_lessons ?? 0; $chartTasks[] = $row->total_tasks ?? 0; $chartQuizzes[] = $row->total_quizzes ?? 0; $chartProgress[] = $row->progress_total ?? 0; } @endphp @if(isset($barChart))

Grafik Progres Mata Pelajaran

@endif