1234567891011121314151617181920212223242526
  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: 'Customer', icon: 'pi pi-users', to: '/customers', component: 'customer/Index' },
  21. { label: 'Laundry', icon: 'pi pi-table', to: '/laundries', component: 'laundry/Index' },
  22. { label: 'Product', icon: 'pi pi-table', to: '/products', component: 'product/Index' },
  23. ],
  24. },
  25. ]