due date added

This commit is contained in:
victorAnumudu
2025-03-10 13:48:16 +01:00
parent 4cad2582de
commit d8cd760a30
@@ -52,6 +52,9 @@ export default function DisbursementsLoanCom() {
<th scope="col" className="px-4 py-2">
Added
</th>
<th scope="col" className="px-4 py-2">
Due Date
</th>
<th scope="col" className="px-4 py-2">
Amount
</th>
@@ -84,6 +87,11 @@ export default function DisbursementsLoanCom() {
{getDateFromDateString(item?.added)} {getTimeFromDateString(item?.added)}
</div>
</td>
<td className="px-3 py-2">
<div className="flex items-center">
{getDateFromDateString(item?.due_date)} {getTimeFromDateString(item?.due_date)}
</div>
</td>
<td className="px-3 py-2">
{formatNumber(item?.approved_amount)}
</td>