@extends('layouts.dashboard') @section('title', $pageTitle ?? 'Create Payment') @section('page_header')
| Reference | Date | Total | Paid | Outstanding | Status | Invoice View |
|---|---|---|---|---|---|---|
| {{ $row['ref'] ?? '-' }} | {{ $row['date'] ?? '-' }} | {{ number_format((float) ($row['total'] ?? 0), 2) }} | {{ number_format((float) ($row['paid'] ?? 0), 2) }} | {{ number_format((float) ($row['outstanding'] ?? 0), 2) }} | {{ ucfirst((string) ($row['status'] ?? '-')) }} | @if (! empty($row['invoice_url'])) View Invoice @else - @endif |
| No references found for selected party. | ||||||