@extends('layouts.app') @section('title', 'Financial Reports') @section('content')
Total Disbursed
Total Collected
Interest Collected
Collection Rate
Rs. {{ number_format($stats['total_capital_collected'], 2) }}
Rs. {{ number_format($stats['total_interest_collected'], 2) }}
Rs. {{ number_format($stats['total_disbursed'], 2) }}
Total portfolio valueRs. {{ number_format($outstanding, 2) }}
Remaining to be collected| Metric | Amount (Rs.) | Percentage |
|---|---|---|
| Total Loan Disbursements | {{ number_format($stats['total_disbursed'], 2) }} | 100.0% |
| Total Collections | {{ number_format($stats['total_collected'], 2) }} | {{ $stats['total_disbursed'] > 0 ? number_format(($stats['total_collected'] / $stats['total_disbursed']) * 100, 1) : 0 }}% |
| Interest Collections | {{ number_format($stats['total_interest_collected'], 2) }} | {{ $stats['total_collected'] > 0 ? number_format(($stats['total_interest_collected'] / $stats['total_collected']) * 100, 1) : 0 }}% |
| Capital Collections | {{ number_format($stats['total_capital_collected'], 2) }} | {{ $stats['total_collected'] > 0 ? number_format(($stats['total_capital_collected'] / $stats['total_collected']) * 100, 1) : 0 }}% |
| Outstanding Amount | {{ number_format($stats['total_disbursed'] - $stats['total_capital_collected'], 2) }} | {{ $stats['total_disbursed'] > 0 ? number_format((($stats['total_disbursed'] - $stats['total_capital_collected']) / $stats['total_disbursed']) * 100, 1) : 0 }}% |