Modified by www.SourceFiles.app

This commit is contained in:
2026-08-07 14:09:52 +00:00
parent b07777befd
commit dde72f8710
+7
View File
@@ -19,6 +19,7 @@ import {
Printer, Printer,
Mail, Mail,
CreditCard, CreditCard,
Wallet,
} from "lucide-react"; } from "lucide-react";
import { useEffect } from "react"; import { useEffect } from "react";
@@ -70,6 +71,12 @@ function ProtectedLayout() {
}, },
{ to: "/reports", label: "Reports", icon: Printer, show: isAdmin || roles.includes("teacher") }, { to: "/reports", label: "Reports", icon: Printer, show: isAdmin || roles.includes("teacher") },
{ to: "/ledger", label: "Tuition", icon: Receipt, show: true }, { to: "/ledger", label: "Tuition", icon: Receipt, show: true },
{
to: "/receivables",
label: "Receivables",
icon: Wallet,
show: isAdmin || roles.includes("billing_admin"),
},
{ {
to: "/billing", to: "/billing",
label: "Billing", label: "Billing",