- second commit
This commit is contained in:
parent
4fc3bb0a01
commit
59a99ff3c8
61 changed files with 2625 additions and 1182 deletions
46
resources/js/menu.ts
Normal file
46
resources/js/menu.ts
Normal file
|
@ -0,0 +1,46 @@
|
|||
import {
|
||||
mdiMonitor,
|
||||
mdiGithub,
|
||||
mdiAccountEye,
|
||||
mdiAccountGroup,
|
||||
mdiDatabasePlus,
|
||||
} from '@mdi/js';
|
||||
|
||||
export default [
|
||||
{
|
||||
route: 'dashboard',
|
||||
icon: mdiMonitor,
|
||||
label: 'Dashboard',
|
||||
},
|
||||
// {
|
||||
// route: 'permission.index',
|
||||
// icon: mdiAccountKey,
|
||||
// label: 'Permissions'
|
||||
// },
|
||||
// {
|
||||
// route: 'role.index',
|
||||
// icon: mdiAccountEye,
|
||||
// label: 'Roles'
|
||||
// },
|
||||
{
|
||||
route: 'user.index',
|
||||
icon: mdiAccountGroup,
|
||||
label: 'Users',
|
||||
},
|
||||
{
|
||||
route: 'role.index',
|
||||
icon: mdiAccountEye,
|
||||
label: 'Roles',
|
||||
},
|
||||
{
|
||||
route: 'dataset.create',
|
||||
icon: mdiDatabasePlus,
|
||||
label: 'Create Dataset',
|
||||
},
|
||||
{
|
||||
href: 'https://gitea.geologie.ac.at/geolba/tethys',
|
||||
icon: mdiGithub,
|
||||
label: 'Gitea',
|
||||
target: '_blank',
|
||||
},
|
||||
];
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue