123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. {
  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: 'Profil Perusahaan',
  35. icon: 'pi pi-cog',
  36. to: '/settings',
  37. component: 'Settigs/Index',
  38. },
  39. ],
  40. },
  41. ],
  42. // Admin 1
  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: 'Penjualan',
  66. icon: 'pi pi-tag',
  67. to: '/sales',
  68. component: 'Sales/Index',
  69. },
  70. {
  71. label: 'Stok Barang',
  72. icon: 'pi pi-box',
  73. to: '/stock-products',
  74. component: 'StockProducts/Index',
  75. },
  76. ],
  77. },
  78. ],
  79. // Admin 2
  80. 3: [
  81. {
  82. label: 'Home',
  83. items: [
  84. {
  85. label: 'Dashboard',
  86. icon: 'pi pi-chart-bar',
  87. to: '/dashboards',
  88. component: 'Dashboards/Index',
  89. },
  90. ],
  91. },
  92. {
  93. label: 'Master',
  94. items: [
  95. {
  96. label: 'Supplier',
  97. icon: 'pi pi-shopping-cart',
  98. to: '/suppliers',
  99. component: 'Suppliers/Index',
  100. },
  101. {
  102. label: 'Produk',
  103. icon: 'pi pi-th-large',
  104. to: '/products',
  105. component: 'Products/Index',
  106. },
  107. {
  108. label: 'Pembelian',
  109. icon: 'pi pi-shopping-cart',
  110. to: '/purchases',
  111. component: 'Purchases/Index',
  112. },
  113. {
  114. label: 'Stok Barang',
  115. icon: 'pi pi-box',
  116. to: '/stock-products',
  117. component: 'StockProducts/Index',
  118. },
  119. ],
  120. },
  121. ],
  122. }