1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-03-09 05:49:58 -04:00
hypothetical/app/Models/DashboardMenu.php

16 lines
234 B
PHP

<?php
namespace App\Models;
class DashboardMenu
{
/**
* Dashboard Menu
*
* @return array
*/
public static $menu = [
[ 'Contact', 'contact' ],
[ 'Subscriptions', 'subscriptions' ]
];
}