hgh_admin/resources/js/navigation/vertical/dashboard.js
nasir@endelospay.com e7534eb5a9 fix
2024-07-23 23:10:15 +05:00

143 lines
2.7 KiB
JavaScript

export default [
{
title: 'Dashboard',
icon: { icon: 'ri-home-smile-line' },
to: 'admin-dashboard',
// children: [
// {
// title: 'CRM',
// to: 'dashboards-crm',
// },
// {
// title: 'Analytics',
// to: 'dashboards-analytics',
// },
// {
// title: 'eCommerce',
// to: 'dashboards-ecommerce',
// },
// {
// title: 'Academy',
// to: 'dashboards-academy',
// },
// {
// title: 'Logistics',
// to: 'dashboards-logistics',
// },
// ],
// badgeContent: '5',
// badgeClass: 'bg-error',
},
{
title: 'Patients',
icon: { icon: 'ri-user-line' },
to: 'admin-patients',
},
{
title: 'Providers',
icon: { icon: 'ri-stethoscope-line' },
to: 'admin-providers',
},
{
title: 'Lab Kites',
icon: { icon: 'ri-test-tube-line' },
to: 'admin-lab-kites',
},
{
title: 'Prodcuts',
icon: { icon: 'ri-medicine-bottle-line' },
to: 'admin-products',
},
// {
// title: 'Orders',
// icon: { icon: 'ri-medicine-bottle-line' },
// to: 'admin-orders',
// },
{
title: 'Settings',
icon: { icon: 'ri-settings-4-line' },
class: 'bottom-end',
isDropdownButton: true,
children: [
{
title: 'Profile',
to: 'admin-profile',
icon: {
icon: 'ri-group-line',
},
},
{
title: 'Security',
to: 'admin-change-password',
icon: {
icon: 'ri-shield-keyhole-line',
},
},
{
title: 'Site Setting',
to: 'admin-site-setting',
icon: {
icon: 'ri-settings-4-line',
},
},
]
},
{
title: 'Reports',
icon: { icon: 'ri-file-chart-line' },
children: [
{
title: 'Provider Reports',
to: 'admin-provider-report',
icon: {
icon: 'ri-group-line',
},
},
]
}
// {
// title: 'Front Pages',
// icon: { icon: 'ri-file-copy-line' },
// children: [
// {
// title: 'Landing',
// to: 'front-pages-landing-page',
// target: '_blank',
// },
// {
// title: 'Pricing',
// to: 'front-pages-pricing',
// target: '_blank',
// },
// {
// title: 'Payment',
// to: 'front-pages-payment',
// target: '_blank',
// },
// {
// title: 'Checkout',
// to: 'front-pages-checkout',
// target: '_blank',
// },
// {
// title: 'Help Center',
// to: 'front-pages-help-center',
// target: '_blank',
// },
// ],
// },
]