{{-- ================= HEADER SECTION ================= --}}
{{-- Background Patterns --}}
Mata pelajaran aktif

Jurusan {{ $department->name }}

Pusat pengelolaan modul pembelajaran. Pantau statistik kelas, aktivitas pengajar, dan materi ajar dalam satu pandangan terintegrasi.

{{-- Stats Summary Badge --}}
{{ $allModules->count() }} Total Mata pelajaran
{{-- ================= FILTER TINGKAT TAB ================= --}}
@php $tabs = [ null => 'Semua', 1 => 'Tingkat X', 2 => 'Tingkat XI', 3 => 'Tingkat XII', ]; @endphp @foreach($tabs as $value => $label) {{ $label }} @endforeach
{{-- ================= GRID MODULE ================= --}}
@forelse($allModules as $index => $module) @php $accentColors = ['border-blue-500', 'border-emerald-500', 'border-amber-500', 'border-purple-500', 'border-rose-500']; $bgColors = ['bg-blue-500', 'bg-emerald-500', 'bg-amber-500', 'bg-purple-500', 'bg-rose-500']; // Added for badges $accent = $accentColors[$index % 5]; $badgeBg = $bgColors[$index % 5]; @endphp
{{-- Top Accent Line --}}
{{-- 1. IMAGE HEADER --}}
{{ $module->name }} {{-- Gradient Overlay --}}
{{-- Title on Image --}}
Modul Ajar

{{ $module->title }}

{{-- 2. CONTENT BODY --}}
{{-- Stats Information (Refined Layout) --}}
Total Kelas {{ $module->classes->where('department_id', $department->id)->count() }} Kelas Terdaftar
{{-- Action Button Container (Style Button Dipertahankan 100%) --}}
@empty {{-- EMPTY STATE --}}

Belum Ada Modul

Modul pembelajaran belum tersedia untuk jurusan ini. Silakan tambahkan data master terlebih dahulu.

@endforelse