menu-admin.js 1.0KB

123456789101112131415161718192021222324252627
  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. ],
  25. },
  26. ]