implementation on the dispatch and some change in the deliveries page

This commit is contained in:
2026-05-19 19:55:36 +05:30
parent 5a80256856
commit 4cd1b2212d
13 changed files with 19188 additions and 326 deletions

View File

@@ -48,6 +48,8 @@ const RidersLogs = Loadable(lazy(() => import('pages/nearle/reports/ridersLogs')
const Riders = Loadable(lazy(() => import('pages/nearle/riders/riders')));
const Createrider = Loadable(lazy(() => import('pages/nearle/riders/createrider')));
const EditRider = Loadable(lazy(() => import('pages/nearle/riders/editRider')));
const Dispatch = Loadable(lazy(() => import('pages/nearle/dispatch/Dispatch')));
// ==============================|| MAIN ROUTING ||============================== //
@@ -164,6 +166,10 @@ const MainRoutes = {
element: <RidersLogs />
}
]
},
{
path: 'dispatch',
element: <Dispatch />
}
]
},
@@ -205,8 +211,9 @@ const MainRoutes = {
element: <MaintenanceComingSoon />
}
]
}
},
]
};
export default MainRoutes;