Skip to main content

orchidsoftware/platform

4793 stars
1 code files
View orchidsoftware/platform on GitHub

src/Platform/Dashboard.php

Open in GitHub
class Dashboard
{
//
public const MENU_MAIN = 'Main';
 
public const MENU_PROFILE = 'Profile';
 
public function __construct()
{
$this->menu = collect([
self::MENU_MAIN => collect(),
self::MENU_PROFILE => collect(),
]);
 
//
}
//
}