@extends('layouts.app') @section('page-title', 'Receivable & Payable Report') @section('content')
| Invoice # | Customer | Due Date | Amount |
|---|---|---|---|
| {{ $invoice->id }} | {{ $invoice->customer->name ?? '-' }} | {{ $invoice->due_date ? $invoice->due_date->format('M d, Y') : '-' }} | {{ number_format($invoice->due, 2) }} |
| Total Receivable | {{ number_format($totalReceivable, 2) }} | ||
No outstanding receivables!
@endifNo payable tracking implemented yet.