feat(sidebar): tambahkan section 'laporan' pada menu sidebar

- Menambahkan 'laporan' ke dalam urutan section menu sidebar.
- Memperbarui judul section untuk mencakup 'Laporan'.
This commit is contained in:
Daeng Deni Mardaeni 2025-04-14 10:35:25 +07:00
parent 179dab656c
commit 99f8aeffc3
2 changed files with 2 additions and 1240 deletions

File diff suppressed because it is too large Load Diff

View File

@ -44,10 +44,11 @@
$menus = isset($menus) ? json_decode(json_encode($menus)) : new stdClass; $menus = isset($menus) ? json_decode(json_encode($menus)) : new stdClass;
// Define the order of sections // Define the order of sections
$sectionOrder = ['main', 'otorisator', 'master', 'system']; $sectionOrder = ['main', 'otorisator','laporan', 'master', 'system'];
$sectionTitles = [ $sectionTitles = [
'main' => 'Apps', 'main' => 'Apps',
'otorisator' => 'Otorisator', 'otorisator' => 'Otorisator',
'laporan' => 'Laporan',
'master' => 'Master Data', 'master' => 'Master Data',
'system' => 'Systems' 'system' => 'Systems'
]; ];