menu-admin.js 1.2KB

1234567891011121314151617181920212223242526272829303132
  1. export default [
  2. {
  3. label: 'Menu',
  4. items: [
  5. { label: 'Transaksi', icon: 'pi pi-shopping-cart', to: '/transactions', component: 'transaction/Index' },
  6. { label: 'Pengeluaran', icon: 'pi pi-wallet', to: '/expenses', component: 'expense/Index' },
  7. {
  8. label: 'Laporan',
  9. icon: 'pi pi-book',
  10. items: [
  11. { label: 'Mutasi', icon: 'pi pi-circle', to: '/reports/mutations', component: 'mutation/Report' },
  12. { label: 'Transaksi', icon: 'pi pi-circle', to: '/reports/transactions', component: 'transaction/Report' },
  13. ],
  14. },
  15. ],
  16. },
  17. {
  18. label: 'Master',
  19. items: [
  20. { label: 'User', icon: 'pi pi-user', to: '/users', component: 'user/Index' },
  21. { label: 'Customer', icon: 'pi pi-users', to: '/customers', component: 'customer/Index' },
  22. { label: 'Outlet', icon: 'pi pi-share-alt', to: '/outlets', component: 'outlet/Index' },
  23. { label: 'Laundry', icon: 'pi pi-table', to: '/laundries', component: 'laundry/Index' },
  24. { label: 'Product', icon: 'pi pi-table', to: '/products', component: 'product/Index' },
  25. ],
  26. },
  27. {
  28. label: 'Pengaturan',
  29. items: [{ label: 'Diskon', icon: 'pi pi-percentage', to: '/discounts', component: 'discount/Index' }],
  30. },
  31. ]