-
Notifications
You must be signed in to change notification settings - Fork 0
Menu Configuration
Martin Levi K.A edited this page Mar 11, 2026
·
1 revision
Menu items are defined in the file:
config/menu.php
Example:
$menu = [ [ "title" => "Dashboard", "icon" => "fa-solid fa-house", "link" => "index.php" ], [ "title" => "Users", "icon" => "fa-solid fa-users", "link" => "users.php" ], [ "title" => "Reports", "icon" => "fa-solid fa-chart-line", "link" => "reports.php" ] ];
Each menu item supports:
title → menu label icon → Font Awesome icon class link → page URL