@extends('applicant.registration.layout') @section('form')
@csrf @php // Transform collection to array: ['subject' => ['semester' => grade]] $grades = $data->groupBy('subject')->map(function($items) { return $items->pluck('grade', 'semester'); })->toArray(); @endphp

Petunjuk Pengisian

Masukkan Nilai Rata-rata Pengetahuan (KI-3) dari rapor untuk setiap semester.

R

Rata-rata Nilai Rapor

@php $isPmpa = \Illuminate\Support\Str::contains(strtoupper($applicant->pathway->name ?? ''), 'PMPA'); $startSem = $isPmpa ? 1 : 3; $endSem = 5; $subject = 'average'; $semesterLabels = [ 1 => 'Kelas 7 Ganjil', 2 => 'Kelas 7 Genap', 3 => 'Kelas 8 Ganjil', 4 => 'Kelas 8 Genap', 5 => 'Kelas 9 Ganjil' ]; @endphp @for($sem = $startSem; $sem <= $endSem; $sem++)
@endfor
Kembali
@endsection