Modified by www.SourceFiles.app
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user