menu.js 1.0KB

123456789101112131415161718192021222324252627282930
  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: 'Customer', icon: 'pi pi-users', to: '/customers', component: 'customer/Index' },
  25. { label: 'Laundry', icon: 'pi pi-table', to: '/laundries', component: 'laundry/Index' },
  26. { label: 'Product', icon: 'pi pi-table', to: '/products', component: 'product/Index' },
  27. ],
  28. },
  29. ]