menu-admin.js 1.4KB

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