add custom labels for sidebar resources

This commit is contained in:
maxim
2025-02-04 14:32:18 +03:00
parent 881609ab5a
commit b3863e5aef

@ -48,6 +48,7 @@ function App() {
edit: '/country/edit/:id',
meta: {
canDelete: true,
label: 'Страны',
icon: <CountryIcon />,
},
},
@ -58,6 +59,7 @@ function App() {
edit: '/city/edit/:id',
meta: {
canDelete: true,
label: 'Города',
icon: <CityIcon />,
},
},
@ -68,6 +70,7 @@ function App() {
edit: '/carrier/edit/:id',
meta: {
canDelete: true,
label: 'Перевозчики',
icon: <CarrierIcon />,
},
},
@ -79,6 +82,7 @@ function App() {
show: '/media/show/:id',
meta: {
canDelete: true,
label: 'Медиа',
icon: <MediaIcon />,
},
},