cmtracker/src/Libs/NavList.php

28 lines
781 B
PHP

<?php
namespace App\Libs;
class NavList
{
public const DEFAULT = 'nav-link text-dark';
public const LIST = [
'admin_dashboard' => self::DEFAULT,
'user_dashboard' => self::DEFAULT,
'profile' => self::DEFAULT,
'user_list' => self::DEFAULT,
'staff_dashboard' => self::DEFAULT,
'case_list' => self::DEFAULT,
'add_user' => self::DEFAULT,
'referral_sources' => self::DEFAULT,
'case_notes' => self::DEFAULT,
'community_resources' => self::DEFAULT,
'my_cases' => self::DEFAULT,
'staff_notes' => self::DEFAULT,
'case_itinerary' => self::DEFAULT,
'company_nav' => self::DEFAULT,
];
public const PRESENT_LINK = 'nav-link text-white active bg-gradient-dark';
}