@extends('layouts.app') @section('title', 'Due Report') @section('page-title', 'Due Report') @section('content')
| Loan # | Customer | Scheme | Due Date | Days Until Due | Outstanding | Installment | Status |
|---|---|---|---|---|---|---|---|
| {{ $loan->loan_number }} | {{ $loan->customer->name }} | {{ $loan->loanScheme?->name ?? $loan->scheme?->name ?? 'N/A' }} | {{ $loan->due_date->format('d M Y') }} | {{ $loan->days_until_due }} days | ₹{{ number_format($loan->remaining_amount, 2) }} | ₹{{ number_format($loan->monthly_installment, 2) }} | Active |
|
No due loans found |
|||||||
| Total: | ₹{{ number_format($loans->sum('remaining_amount'), 2) }} | ₹{{ number_format($loans->sum('monthly_installment'), 2) }} | |||||