This commit is contained in:
louiscklaw
2025-04-19 02:11:44 +08:00
parent 50b69d3ce8
commit 60a0cdc11d
30 changed files with 391 additions and 184 deletions

View File

@@ -93,6 +93,12 @@ export const paths = {
create: '/dashboard/customers/create',
details: (customerId: string) => `/dashboard/customers/${customerId}`,
},
students: {
list: '/dashboard/students',
create: '/dashboard/students/create',
details: (studentId: string) => `/dashboard/students/${studentId}`,
edit: (studentId: string) => `/dashboard/students/edit/${studentId}`,
},
eCommerce: '/dashboard/e-commerce',
fileStorage: '/dashboard/file-storage',
invoices: {