@extends('layouts.app') @section('content')
Track loan repayments and collection performance
Total Expected
Total Collected
Collection Rate
Overdue Loans
| Loan # | Employee | Outstanding | Monthly Payment | Last Payment | Status | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $loan->application_number }} |
{{ $loan->employee_name }}
{{ $loan->employee_number }}
|
TZS {{ number_format($loan->total_amount_to_pay ?? 0) }} | TZS {{ number_format(($loan->total_amount_to_pay ?? 0) / ($loan->duration ?: 1)) }} | {{ $loan->updated_at->format('d M Y') }} | @php $status = rand(0, 2); @endphp @if($status == 0) Current @elseif($status == 1) Late @else Overdue @endif | ||
|
No active loans for collection |
|||||||