adrema/resources/js/store/links.js

32 lines
922 B
JavaScript
Raw Normal View History

2020-04-10 20:32:12 +02:00
export default {
main: {
open: false,
links: [
{ icon: 'home', href: '/', title: 'Dashboard' },
2020-06-02 23:45:25 +02:00
{ icon: 'user', href: '/member', title: 'Mitglieder' },
2020-04-10 20:32:12 +02:00
]
},
footer: {
open: false,
links: [
{ icon: 'user', href: '/user', title: 'Benutzer' },
{ icon: 'users', href: '/group', title: 'Gruppen' },
{ icon: 'cogs', href: '/config', title: 'Konfiguration' },
{ icon: 'sign-out', href: '/logout', title: 'Abmelden' }
]
},
profileToolbar: {
open: false,
links: [
{ icon: 'user', href: '/profile', title: 'Meine Daten' }
]
},
adminToolbar: {
open: false,
links: [
{ icon: 'key', href: '/setting', title: 'Einstellungen' },
{ icon: 'user', href: '/profile', title: 'Meine Einstellungen' }
]
}
};