feat: Implement order details page and navigation for available orders

This commit is contained in:
Achintha Isuru
2026-03-19 14:08:34 -04:00
parent 742c8c75c5
commit 9c71acb96a
14 changed files with 813 additions and 102 deletions

View File

@@ -133,6 +133,10 @@ class StaffMainModule extends Module {
StaffPaths.childRoute(StaffPaths.main, StaffPaths.shiftDetailsRoute),
module: ShiftDetailsModule(),
);
r.module(
StaffPaths.childRoute(StaffPaths.main, StaffPaths.orderDetailsRoute),
module: OrderDetailsModule(),
);
r.module(
StaffPaths.childRoute(StaffPaths.main, StaffPaths.faqs),
module: FaqsModule(),