diff --git a/src/routes/_authenticated/route.tsx b/src/routes/_authenticated/route.tsx index b2484f0..9f0340f 100644 --- a/src/routes/_authenticated/route.tsx +++ b/src/routes/_authenticated/route.tsx @@ -19,6 +19,7 @@ import { Printer, Mail, CreditCard, + Wallet, } from "lucide-react"; import { useEffect } from "react"; @@ -70,6 +71,12 @@ function ProtectedLayout() { }, { to: "/reports", label: "Reports", icon: Printer, show: isAdmin || roles.includes("teacher") }, { to: "/ledger", label: "Tuition", icon: Receipt, show: true }, + { + to: "/receivables", + label: "Receivables", + icon: Wallet, + show: isAdmin || roles.includes("billing_admin"), + }, { to: "/billing", label: "Billing",