mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
30 lines
582 B
PHP
30 lines
582 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class DashboardMenu
|
|
{
|
|
/**
|
|
* Dashboard Menu
|
|
*
|
|
* @return array
|
|
*/
|
|
public static $menu = [
|
|
[
|
|
'title' => 'Submissions',
|
|
|
|
'submenu' => [
|
|
[
|
|
'title' => 'Contact',
|
|
'type' => 'view',
|
|
'model' => 'contact'
|
|
],
|
|
[
|
|
'title' => 'Subscriptions',
|
|
'type' => 'view',
|
|
'model' => 'subscriptions'
|
|
]
|
|
]
|
|
]
|
|
];
|
|
}
|