updates on the profitability page and added the new page of this one

This commit is contained in:
2026-06-16 19:49:57 +05:30
parent ffcd9440e6
commit b0bb2d63cf
5 changed files with 796 additions and 5 deletions

View File

@@ -44,6 +44,7 @@ const OrdersSummary = Loadable(lazy(() => import('pages/nearle/reports/ordersSum
const OrdersDetails = Loadable(lazy(() => import('pages/nearle/reports/ordersDetails')));
const RidersSummary = Loadable(lazy(() => import('pages/nearle/reports/ridersSummary')));
const RidersLogs = Loadable(lazy(() => import('pages/nearle/reports/ridersLogs')));
const Profitability = Loadable(lazy(() => import('pages/nearle/reports/profitability')));
const Riders = Loadable(lazy(() => import('pages/nearle/riders/riders')));
const Createrider = Loadable(lazy(() => import('pages/nearle/riders/createrider')));
@@ -165,6 +166,10 @@ const MainRoutes = {
{
path: 'riderslogs',
element: <RidersLogs />
},
{
path: 'profitability',
element: <Profitability />
}
]
},