grownee
<%= month %>, <%= year %>
Total Income
N20000
0% more than january
Top Income Drivers
Salary
N5000000
(80%)
Business
N1000000
(10%)
Gifts
N500000
5%
Least Income Drivers
Salary
N5000000
(80%)
Business
N1000000
(10%)
Gifts
N500000
5%
Total Expenses
N10000000
<%= incomeInsight %>
Top Spending Categories
<% categoryTopSpending.forEach(item => { %>
<%= item.name %>
<%= currency %><%= item.amount.toLocaleString() %>
(<%= item.percentage %>%)
<% }) %>
Overspent
<% categoryTopOverspent.forEach(item => { %>
<%= item.name %>
<%= currency %><%= item.amount.toLocaleString() %>
of <%= currency %><%= item.allocated.toLocaleString() %>
<% }) %>
Underspent
<% categoryTopUnderspent.forEach(item => { %>
<%= item.name %>
<%= currency %><%= item.amount.toLocaleString() %>
of <%= currency %><%= item.allocated.toLocaleString() %>
<% }) %>
Expenses
<% expenses.forEach(item => { %>
<%= item.name %>
<%= currency %><%= item.amount.toLocaleString() %>
<% }) %>
Income
<% incomes.forEach(item => { %>
<%= item.source %>
<%= currency %><%= item.amount.toLocaleString() %>
<% }) %>