| 123456789101112131415161718192021222324252627 |
- export default [
- {
- label: 'Menu',
- items: [
- { label: 'Transaksi', icon: 'pi pi-shopping-cart', to: '/transactions', component: 'transaction/Index' },
- { label: 'Pengeluaran', icon: 'pi pi-wallet', to: '/expenses', component: 'expense/Index' },
- {
- label: 'Laporan',
- icon: 'pi pi-book',
- items: [
- { label: 'Mutasi', icon: 'pi pi-circle', to: '/reports/mutations', component: 'mutation/Report' },
- { label: 'Transaksi', icon: 'pi pi-circle', to: '/reports/transactions', component: 'transaction/Report' },
- ],
- },
- ],
- },
- {
- label: 'Master',
- items: [
- { label: 'User', icon: 'pi pi-user', to: '/users', component: 'user/Index' },
- { label: 'Customer', icon: 'pi pi-users', to: '/customers', component: 'customer/Index' },
- { label: 'Outlet', icon: 'pi pi-share-alt', to: '/outlets', component: 'outlet/Index' },
- { label: 'Laundry', icon: 'pi pi-table', to: '/laundries', component: 'laundry/Index' },
- ],
- },
- ]
|