menu.js 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. export default {
  2. // Owner
  3. 1: [
  4. {
  5. label: 'Home',
  6. items: [{ label: 'Dashboard', icon: 'pi pi-home', to: '/dashboards', component: 'home/Index' }],
  7. },
  8. {
  9. label: 'Menu',
  10. items: [
  11. { label: 'Transaksi', icon: 'pi pi-shopping-cart', to: '/transactions', component: 'transaction/Index' },
  12. { label: 'Pengeluaran', icon: 'pi pi-wallet', to: '/expenses', component: 'expense/Index' },
  13. {
  14. label: 'Laporan',
  15. icon: 'pi pi-book',
  16. items: [
  17. { label: 'Mutasi', icon: 'pi pi-circle', to: '/reports/mutations', component: 'mutation/Report' },
  18. {
  19. label: 'Transaksi',
  20. icon: 'pi pi-circle',
  21. to: '/reports/transactions',
  22. component: 'transaction/Report',
  23. },
  24. ],
  25. },
  26. ],
  27. },
  28. {
  29. label: 'Master',
  30. items: [
  31. { label: 'User', icon: 'pi pi-user', to: '/users', component: 'user/Index' },
  32. { label: 'Customer', icon: 'pi pi-users', to: '/customers', component: 'customer/Index' },
  33. { label: 'Outlet', icon: 'pi pi-share-alt', to: '/outlets', component: 'outlet/Index' },
  34. { label: 'Laundry', icon: 'pi pi-table', to: '/laundries', component: 'laundry/Index' },
  35. { label: 'Product', icon: 'pi pi-table', to: '/products', component: 'product/Index' },
  36. ],
  37. },
  38. {
  39. label: 'Pengaturan',
  40. items: [{ label: 'Diskon', icon: 'pi pi-percentage', to: '/discounts', component: 'discount/Index' }],
  41. },
  42. ],
  43. // Head Outlet
  44. 2: [
  45. {
  46. label: 'Home',
  47. items: [{ label: 'Dashboard', icon: 'pi pi-home', to: '/dashboards', component: 'home/Index' }],
  48. },
  49. {
  50. label: 'Menu',
  51. items: [
  52. { label: 'Transaksi', icon: 'pi pi-shopping-cart', to: '/transactions', component: 'transaction/Index' },
  53. { label: 'Pengeluaran', icon: 'pi pi-wallet', to: '/expenses', component: 'expense/Index' },
  54. {
  55. label: 'Laporan',
  56. icon: 'pi pi-book',
  57. items: [
  58. { label: 'Mutasi', icon: 'pi pi-circle', to: '/reports/mutations', component: 'mutation/Report' },
  59. {
  60. label: 'Transaksi',
  61. icon: 'pi pi-circle',
  62. to: '/reports/transactions',
  63. component: 'transaction/Report',
  64. },
  65. ],
  66. },
  67. ],
  68. },
  69. {
  70. label: 'Master',
  71. items: [
  72. { label: 'Customer', icon: 'pi pi-users', to: '/customers', component: 'customer/Index' },
  73. { label: 'Laundry', icon: 'pi pi-table', to: '/laundries', component: 'laundry/Index' },
  74. { label: 'Product', icon: 'pi pi-table', to: '/products', component: 'product/Index' },
  75. ],
  76. },
  77. {
  78. label: 'Pengaturan',
  79. items: [{ label: 'Diskon', icon: 'pi pi-percentage', to: '/discounts', component: 'discount/Index' }],
  80. },
  81. ],
  82. // Employee
  83. 3: [
  84. {
  85. label: 'Home',
  86. items: [{ label: 'Dashboard', icon: 'pi pi-home', to: '/dashboards', component: 'home/Index' }],
  87. },
  88. {
  89. label: 'Menu',
  90. items: [
  91. { label: 'Transaksi', icon: 'pi pi-shopping-cart', to: '/transactions', component: 'transaction/Index' },
  92. { label: 'Pengeluaran', icon: 'pi pi-wallet', to: '/expenses', component: 'expense/Index' },
  93. {
  94. label: 'Laporan',
  95. icon: 'pi pi-book',
  96. items: [
  97. { label: 'Mutasi', icon: 'pi pi-circle', to: '/reports/mutations', component: 'mutation/Report' },
  98. {
  99. label: 'Transaksi',
  100. icon: 'pi pi-circle',
  101. to: '/reports/transactions',
  102. component: 'transaction/Report',
  103. },
  104. ],
  105. },
  106. ],
  107. },
  108. {
  109. label: 'Master',
  110. items: [{ label: 'Customer', icon: 'pi pi-users', to: '/customers', component: 'customer/Index' }],
  111. },
  112. ],
  113. }