mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE-40): create MAIN_DRAWER_LINKS constant
This commit is contained in:
@@ -0,0 +1,75 @@
|
|||||||
|
export const MAIN_DRAWER_LINKS = [
|
||||||
|
{
|
||||||
|
title: 'Dashboard',
|
||||||
|
link: '/dashboard',
|
||||||
|
icon: 'gg:chart',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
title: 'Master Data',
|
||||||
|
link: '/master-data',
|
||||||
|
icon: 'majesticons:data-line',
|
||||||
|
submenu: [
|
||||||
|
{
|
||||||
|
title: 'Product',
|
||||||
|
link: '/master-data/product',
|
||||||
|
icon: 'fluent-mdl2:product-variant',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Product Category',
|
||||||
|
link: '/master-data/product-category',
|
||||||
|
icon: 'carbon:categories',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Bank',
|
||||||
|
link: '/master-data/Bank',
|
||||||
|
icon: 'mdi:bank-outline',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Area',
|
||||||
|
link: '/master-data/area',
|
||||||
|
icon: 'majesticons:map-marker-area-line',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Location',
|
||||||
|
link: '/master-data/location',
|
||||||
|
icon: 'mingcute:location-line',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Kandang',
|
||||||
|
link: '/master-data/kandang',
|
||||||
|
icon: 'mdi:farm-home-outline',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Warehouse',
|
||||||
|
link: '/master-data/warehouse',
|
||||||
|
icon: 'hugeicons:warehouse',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Customer',
|
||||||
|
link: '/master-data/customer',
|
||||||
|
icon: 'ix:customer',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'UOM',
|
||||||
|
link: '/master-data/uom',
|
||||||
|
icon: 'lsicon:measure-outline',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Non-Stock',
|
||||||
|
link: '/master-data/nonstock',
|
||||||
|
icon: 'fluent:box-32-regular',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'FCR',
|
||||||
|
link: '/master-data/FCR',
|
||||||
|
icon: 'fluent:food-chicken-leg-16-regular',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Supplier',
|
||||||
|
link: '/master-data/supplier',
|
||||||
|
icon: 'material-symbols:add-business-outline-rounded',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user