24 lines
945 B
PHP
24 lines
945 B
PHP
<?php
|
|
$current_page = basename($_GET['page'] ?? 'dashboard', '.php');
|
|
$menu_items = [
|
|
'dashboard' => ['icon' => 'bi-house-door', 'label' => 'Dashboard'],
|
|
'customs' => ['icon' => 'bi-globe', 'label' => 'Customs Broker'],
|
|
'insurance' => ['icon' => 'bi-shield-check', 'label' => 'Insurance'],
|
|
'transport' => ['icon' => 'bi-truck', 'label' => 'Transportation'],
|
|
];
|
|
?>
|
|
<div id="sidebar-wrapper">
|
|
<div class="sidebar-heading">
|
|
<i class="bi bi-hexagon-fill logo-icon"></i>
|
|
<span>AppManager</span>
|
|
</div>
|
|
<div class="list-group list-group-flush">
|
|
<?php foreach ($menu_items as $page => $item): ?>
|
|
<a href="?page=<?php echo $page; ?>" class="list-group-item <?php echo ($current_page == $page) ? 'active' : ''; ?>">
|
|
<i class="bi <?php echo $item['icon']; ?>"></i>
|
|
<?php echo $item['label']; ?>
|
|
</a>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|