import type { MenuItem } from './menu.model'; export const navbarData: MenuItem[] = [ { label: 'Tableaux De Bord', isTitle: true, }, { routeLink: 'admin', icon: 'dashboard', label: 'Dashboard', }, { icon: 'compare_arrows', label: 'Transactions', items: [ { routeLink: 'transactions/suivi-transaction', label: 'Suivi des transferts ', }, { routeLink: 'transactions/suivi-paiement', label: ' Suivi des paiements', }, ], }, { icon: 'monetization_on', label: 'Reversements', items: [ { routeLink: 'reversements/demande', label: ' Demande ', }, { routeLink: 'reversements/reversement', label: ' Reversements ', }, { routeLink: 'reversements/paiement', label: ' Suivi des paiements ', }, ], }, { icon: 'card_travel', label: 'Services', items: [ { routeLink: 'assistances/view-service', label: ' Mes services ', }, { routeLink: 'assistances/create-service', label: ' Ajouter un Service ', }, ], }, { icon: 'link', label: 'Intégrations', items: [ { routeLink: 'integrations/php', label: ' Integration Php ', }, { routeLink: 'integrations/wordpress', label: ' Integration wordPress ', }, { routeLink: 'integrations/java-script', label: ' Integration JavaScript ', }, { routeLink: 'integrations/prestashop', label: ' PrestaShop ', }, { routeLink: 'integrations/moodel', label: ' Moodel ', }, { routeLink: 'integrations/dart', label: ' Integration Dart ', }, { routeLink: 'integrations/code-provider', label: ' Code Provider ', }, ], }, { icon: 'shop_two', routeLink: 'application-android', label: 'Application android', }, { icon: 'group_add', routeLink: 'compte-associe', label: 'Compte associé', }, { icon: 'person_add', routeLink: 'utilisateurs', label: 'Utilisateurs', }, // { // icon: 'admin_panel_settings', // label: 'Mon profile', // items: [ // { // routeLink: '#', // label: ' Informations ', // }, // { // routeLink: '#', // label: ' Mot de passe ', // }, // { // routeLink: '#', // label: ' Deconnexion', // }, // ], // }, // { // routeLink: '', // icon: 'dashboard', // label: 'Ajustement', // }, // { // routeLink: '', // icon: 'dashboard', // label: 'Achats', // }, // { // routeLink: '', // icon: 'dashboard', // label: 'Transferts', // }, // { // icon: 'assignment', // label: 'R Utilisateur', // items: [ // { // routeLink: '#', // label: 'Fournisseurs', // }, // { // routeLink: '#', // label: 'Clients', // }, // { // routeLink: '#', // label: 'Utilisateur', // }, // ], // }, // { // icon: 'assignment', // label: 'UI', // items: [ // { // routeLink: 'buttons', // label: 'Buttons', // }, // { // routeLink: 'formsfields', // label: 'formsfields', // }, // { // routeLink: 'facturation', // label: 'Ajouter', // }, // { // routeLink: '#', // label: 'Éditer', // }, // ], // }, // { // icon: 'assignment', // label: 'Facturation', // items: [ // { // routeLink: '#', // label: 'list', // }, // { // routeLink: '#', // label: 'Aperçu', // }, // { // routeLink: 'facturation', // label: 'Ajouter', // }, // { // routeLink: '#', // label: 'Éditer', // }, // ], // }, // { // routeLink: 'auth', // icon: 'swap_horizontal_circle', // label: 'Page connexion', // }, // { // routeLink: 'caisse', // icon: 'fax', // label: 'Caisse', // }, // { // routeLink: 'service', // icon: 'fax', // label: 'Service', // items:[ // { // routeLink: '#', // label: 'list', // }, // { // routeLink: '#', // label: 'Aperçu', // }, // { // routeLink: 'facturation', // label: 'Ajouter', // }, // { // routeLink: '#', // label: 'Éditer', // }, // ] // }, // { // label: 'Config', // isTitle: true, // }, // { // routeLink: 'coupens', // icon: 'vpn_key', // label: 'Clé API', // }, // { // routeLink: 'pages', // icon: 'person', // label: 'Profil', // }, // { // routeLink: 'dash', // icon: 'settings', // label: 'Paramètre', // }, ];