From 89120b8226b733c3e9a300c9c99bdb956e6454e1 Mon Sep 17 00:00:00 2001 From: Andrii Vasyliev Date: Thu, 14 May 2015 22:47:32 +0000 Subject: [PATCH] + Menu.php --- Menu.php | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Menu.php diff --git a/Menu.php b/Menu.php new file mode 100644 index 00000000..7750b14b --- /dev/null +++ b/Menu.php @@ -0,0 +1,40 @@ + [ + 'where' => [ + 'after' => ['servers', 'domains', 'tickets', 'finance', 'clients', 'dashboard'], + ], + 'items' => [ + 'hosting' => [ + 'label' => 'Hosting', + 'url' => '#', + 'icon' => 'fa-sitemap', + 'items' => [ + 'accounts' => [ + 'label' => 'Accounts', + 'url' => ['/hosting/account/index'], + 'icon' => 'fa-user', + ], + 'dbs' => [ + 'label' => 'DataBases', + 'url' => ['/hosting/db/index'], + 'icon' => 'fa-database', + ], + ], + ], + ], + ], + ]; + +}