Pay Bills

Created with Fabric.js 5.3.0 Bills Automate your Bill processGet Rewards and credits PAYSTACK Car Loan House Rent EB Bill +10 +15 -3 Days with Draw money 0.02(10) 0.02(15) 0.02(-3) Rewards

Intrest Calculation
const interestRate = 0.1; // 10% annual interest rate
const interestPeriod = 30; // 30-day billing period
const dailyInterestRate = interestRate / 365;
const daysInBillingPeriod = Math.min(interestPeriod, dateDifference);
const interestAmount = Math.round((salary * dailyInterestRate * daysInBillingPeriod) * 100) / 100; // Round to 2 decimal places