|
- import { faChartArea, faChartPie, faIdCard, faIdCardAlt, faMoneyCheck, faUniversity, faUserCircle } from '@fortawesome/free-solid-svg-icons';
-
- export const mainMenuItems: any[] = [
- {
- text: '',
- fa: faUniversity,
- url: './#canvas'
- },
- {
- text: 'SFM',
- icon: 'more-vertical',
- items: [
- { text: 'Summary', fa: faChartArea, url: './#dashboard'},
- { text: '--', separator: "true" },
- { text: 'Logout', icon: 'logout', url: './#login'}]
- },
- {
- text: 'Loans',
- icon: 'dollar',
- items: [
- { text: 'Add', icon: 'plus', popup: "loanEdit" },
- { text: 'List All', icon: 'table' ,url: '#' },
- { text: '--', separator: "true" },
- { text: 'Export All Loans' , icon: "excel"},
- { text: '--', separator: "true" },
- { text: 'Search', icon: 'search' }
- ]
- },
- {
- text: 'Trails',
- icon: 'percent',
- items: [
- { text: 'List All', icon: 'table', url: '#' },
- { text: '--', separator: "true" },
- { text: 'Import From ...', icon : 'upload'}
- ]
- },
- {
- text: 'Clients',
- icon: 'user',
- items: [
- { text: 'Add ', icon: 'plus', url: '#' },
- { text: 'List All', fa: faIdCard },
- { text: '--', separator: "true" },
- { text: 'Search' ,icon: 'search'},
- { text: '--', separator: "true" },
- { text: 'Broadcast', icon:'email' },
- ]
- },
-
- {
- text: 'Brokers',
- fa: faUserCircle,
- items: [
- { text: 'Add ', icon: 'plus', url: '#' },
- { text: 'List All', fa: faIdCardAlt},
- { text: '--', separator: "true" },
- { text: 'Search' , icon: 'search'},
- { text: '--', separator: "true" },
- { text: 'Broadcast' , icon : 'email'},
- { text: '--', separator: "true" },
- { text: 'UnPaid', fa : faMoneyCheck },
- ]
- }
- ];
|