Add NavList class to store navigation links
This commit is contained in:
parent
db01c1296c
commit
2726a00502
17
src/Libs/NavList.php
Normal file
17
src/Libs/NavList.php
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Libs;
|
||||||
|
|
||||||
|
class NavList
|
||||||
|
{
|
||||||
|
public const LIST = [
|
||||||
|
'admin_dashboard' => 'nav-link text-dark',
|
||||||
|
'user_dashboard' => 'nav-link text-dark',
|
||||||
|
'profile' => 'nav-link text-dark',
|
||||||
|
'user_list' => 'nav-link text-dark',
|
||||||
|
'staff_dashboard' => 'nav-link text-dark',
|
||||||
|
'case_list' => 'nav-link text-dark',
|
||||||
|
'add_user' => 'nav-link text-dark',
|
||||||
|
'referral_sources' => 'nav-link text-dark',
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user