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