@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