| 12345678910111213141516171819202122232425 |
- 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: 'Customer', icon: 'pi pi-users', to: '/customers', component: 'customer/Index' },
- { label: 'Laundry', icon: 'pi pi-table', to: '/laundries', component: 'laundry/Index' },
- ],
- },
- ]
|