Konfigurasi Jam Per Sesi
@php
$sesi_defaults = [
1 => ['label' => 'Sesi 1 (Pagi)', 'icon' => 'fa-sun', 'color' => 'text-warning', 'id' => 'jam_s1', 'val' => '08:00'],
2 => ['label' => 'Sesi 2 (Siang)', 'icon' => 'fa-cloud-sun', 'color' => 'text-orange', 'id' => 'jam_s2', 'val' => '10:00'],
3 => ['label' => 'Sesi 3 (Setelah Dzuhur)', 'icon' => 'fa-coffee', 'color' => 'text-danger', 'id' => 'jam_s3', 'val' => '13:00'],
4 => ['label' => 'Sesi 4 (Sore)', 'icon' => 'fa-moon', 'color' => 'text-indigo', 'id' => 'jam_s4', 'val' => '15:00'],
];
@endphp
@foreach($sesi_defaults as $s)
@endforeach