hypothetical/app/Models/DashboardMenu.php

17 lines
234 B
PHP
Raw Normal View History

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