menu.js 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. export default {
  2. // Admin
  3. 1: [
  4. {
  5. label: 'Home',
  6. items: [
  7. {
  8. label: 'Dashboard',
  9. icon: 'pi pi-chart-bar',
  10. to: '/dashboards',
  11. component: 'Dashboards/Index',
  12. },
  13. ],
  14. },
  15. {
  16. label: 'Laporan',
  17. items: [],
  18. },
  19. {
  20. label: 'Master',
  21. items: [
  22. {
  23. label: 'User',
  24. icon: 'pi pi-user',
  25. to: '/users',
  26. component: 'Users/Index',
  27. },
  28. ],
  29. },
  30. {
  31. label: 'Pengaturan',
  32. items: [
  33. {
  34. label: 'PPN',
  35. icon: 'pi pi-percentage',
  36. to: '/ppn',
  37. component: 'PPN/Index',
  38. },
  39. ],
  40. },
  41. ],
  42. // Supervisor
  43. 2: [
  44. {
  45. label: 'Home',
  46. items: [
  47. {
  48. label: 'Dashboard',
  49. icon: 'pi pi-chart-bar',
  50. to: '/dashboards',
  51. component: 'Dashboards/Index',
  52. },
  53. ],
  54. },
  55. {
  56. label: 'Master',
  57. items: [
  58. {
  59. label: 'Pelanggan',
  60. icon: 'pi pi-users',
  61. to: '/customers',
  62. component: 'Customers/Index',
  63. },
  64. {
  65. label: 'Pembelian',
  66. icon: 'pi pi-shopping-cart',
  67. to: '/purchases',
  68. component: 'Purchases/Index',
  69. },
  70. {
  71. label: 'Penjualan',
  72. icon: 'pi pi-tag',
  73. to: '/sales',
  74. component: 'Sales/Index',
  75. },
  76. {
  77. label: 'Produk',
  78. icon: 'pi pi-th-large',
  79. to: '/products',
  80. component: 'Products/Index',
  81. },
  82. ],
  83. },
  84. ],
  85. // Operator
  86. 3: [
  87. {
  88. label: 'Home',
  89. items: [
  90. {
  91. label: 'Dashboard',
  92. icon: 'pi pi-chart-bar',
  93. to: '/dashboards',
  94. component: 'Dashboards/Index',
  95. },
  96. ],
  97. },
  98. {
  99. label: 'Master',
  100. items: [
  101. {
  102. label: 'Supplier',
  103. icon: 'pi pi-shopping-cart',
  104. to: '/suppliers',
  105. component: 'Suppliers/Index',
  106. },
  107. {
  108. label: 'Stok Barang',
  109. icon: 'pi pi-box',
  110. to: '/stock-products',
  111. component: 'StockProducts/Index',
  112. },
  113. ],
  114. },
  115. ],
  116. }