@extends('layouts.app') @section('title', 'Loan Arrears Report') @section('content')
| Loan ID | Member | NIC | Branch | Product | Repayment Method | Due Date | Days Overdue | Total Due (Rs.) | Paid (Rs.) | Status | Credit Officer |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $row->loan_id }} | {{ $row->member_name }} | {{ $row->member_nic }} | {{ $row->branch_name }} | {{ $row->product_name }} | {{ ucfirst($row->repayment_method) }} | {{ \Carbon\Carbon::parse($row->due_date)->format('Y-m-d') }} | {{ $row->days_overdue }} | {{ number_format($row->total_due, 2) }} | {{ number_format($row->paid_amount, 2) }} | {{ ucfirst($row->status) }} | {{ $row->credit_officer_name }} |
| Totals: | {{ number_format($total_outstanding, 2) }} | ||||||||||