main
Ilham Wara Nugroho 2026-01-19 11:53:09 +07:00
parent 40150fd104
commit c27d9845d3
1 changed files with 9 additions and 3 deletions

View File

@ -222,9 +222,15 @@
</div>
<div class="pageNumber row gap-1 justify-content-center">
@foreach($page as $hal)
<div class="col-3 text-center page {{ ((checkPenilaian($hal,$sekolah->MsSekolahId,'kota') == true) || (checkPenilaian($hal,$sekolah->MsSekolahId,'provinsi') == true) ? 'bg-success-light text-success border-success rounded' : 'border-secondary rounded' )}}" data-number={{$hal}}>
<span>{{$hal}}</span>
</div>
@if(session('group_id') == 6)
<div class="col-3 text-center page {{ ((checkPenilaian($hal,$sekolah->MsSekolahId,'kota') == true) ? 'bg-success-light text-success border-success rounded' : 'border-secondary rounded' )}}" data-number={{$hal}}>
<span>{{$hal}}</span>
</div>
@else
<div class="col-3 text-center page {{ ((checkPenilaian($hal,$sekolah->MsSekolahId,'provinsi') == true) ? 'bg-success-light text-success border-success rounded' : 'border-secondary rounded' )}}" data-number={{$hal}}>
<span>{{$hal}}</span>
</div>
@endif
@endforeach
</div>
</div>