menu.js 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. export default {
  2. // Owner
  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. label: 'Penjualan',
  20. icon: 'pi pi-circle',
  21. to: '/sales/report',
  22. component: 'Sales/Report',
  23. },
  24. {
  25. label: 'Pembelian',
  26. icon: 'pi pi-circle',
  27. to: '/purchases/report',
  28. component: 'Purchases/Report',
  29. },
  30. ],
  31. },
  32. {
  33. label: 'Master',
  34. items: [
  35. {
  36. label: 'User',
  37. icon: 'pi pi-user',
  38. to: '/users',
  39. component: 'Users/Index',
  40. },
  41. ],
  42. },
  43. {
  44. label: 'Pengaturan',
  45. items: [
  46. {
  47. label: 'Pengaturan',
  48. icon: 'pi pi-cog',
  49. to: '/settings',
  50. component: 'Settigs/Index',
  51. },
  52. ],
  53. },
  54. ],
  55. // Admin 1
  56. 2: [
  57. {
  58. label: 'Home',
  59. items: [
  60. {
  61. label: 'Dashboard',
  62. icon: 'pi pi-chart-bar',
  63. to: '/dashboards',
  64. component: 'Dashboards/Index',
  65. },
  66. ],
  67. },
  68. {
  69. label: 'Master',
  70. items: [
  71. {
  72. label: 'Pelanggan',
  73. icon: 'pi pi-users',
  74. to: '/customers',
  75. component: 'Customers/Index',
  76. },
  77. {
  78. label: 'Penjualan',
  79. icon: 'pi pi-tag',
  80. to: '/sales',
  81. component: 'Sales/Index',
  82. },
  83. {
  84. label: 'Stok Barang',
  85. icon: 'pi pi-box',
  86. to: '/stock-products',
  87. component: 'StockProducts/Index',
  88. },
  89. ],
  90. },
  91. ],
  92. // Admin 2
  93. 3: [
  94. {
  95. label: 'Home',
  96. items: [
  97. {
  98. label: 'Dashboard',
  99. icon: 'pi pi-chart-bar',
  100. to: '/dashboards',
  101. component: 'Dashboards/Index',
  102. },
  103. ],
  104. },
  105. {
  106. label: 'Master',
  107. items: [
  108. {
  109. label: 'Supplier',
  110. icon: 'pi pi-shopping-cart',
  111. to: '/suppliers',
  112. component: 'Suppliers/Index',
  113. },
  114. {
  115. label: 'Produk',
  116. icon: 'pi pi-th-large',
  117. to: '/products',
  118. component: 'Products/Index',
  119. },
  120. {
  121. label: 'Pembelian',
  122. icon: 'pi pi-shopping-cart',
  123. to: '/purchases',
  124. component: 'Purchases/Index',
  125. },
  126. {
  127. label: 'Stok Barang',
  128. icon: 'pi pi-box',
  129. to: '/stock-products',
  130. component: 'StockProducts/Index',
  131. },
  132. ],
  133. },
  134. ],
  135. }