{{-- STEP INDICATOR & NAVIGATION --}}
{{-- ================= LEVEL ================= --}} @if($step === 'level')
@foreach(\App\Models\Tingkat::all() as $tingkat) @endforeach
@endif {{-- ================= DEPARTMENT ================= --}} @if($step === 'department')
@foreach($departments as $department)
{{ $department->name }}

Jurusan

@endforeach
@endif {{-- ================= CLASS ================= --}} @if($step === 'class')
@foreach($classes as $class)

{{ $class->name }}

{{ $class->department?->name }}

Siswa Terdaftar {{ $class->students()->count() }}
@endforeach
@endif {{-- ================= MONITORING TABLE ================= --}} @if($step === 'list')

Hasil Monitoring

{{ $this->table }}
@endif