@extends('investor.layouts.app') @php $pageTitle = 'Payment Tracker'; @endphp @section('content')
Track all your installments and payment history.
{{ $inv->property->title }}
{{ $inv->property->full_location }}
Total: ₹{{ number_format($inv->invested_amount) }}
Pending: ₹{{ number_format($inv->pending_amount) }}
| Installment | Amount | Due Date | Paid On | Status |
|---|---|---|---|---|
| {{ $pay->installment_label }} | ₹{{ number_format($pay->amount) }} | {{ $pay->due_date->format('d M Y') }} | {{ $pay->paid_date ? $pay->paid_date->format('d M Y') : '—' }} | {{ ucfirst($pay->status) }} |
No payment schedules yet
Payment schedules will appear here once your investments are set up.