@extends('layouts.master') @section('title', 'Outstanding Fees Report') @section('styles') @endsection @section('content')
Track and manage unpaid invoices
| Client Name | Invoice # | Invoice Date | Due Date | Total Amount | Paid Amount | Balance Due | Status | Days Overdue | Currency |
|---|---|---|---|---|---|---|---|---|---|
| {{ $invoice->customer->full_name ?? 'N/A' }} | {{ $invoice->invoice_number }} | {{ $invoice->invoice_date->format('M j, Y') }} | {{ optional($invoice->due_date_computed)->format('M j, Y') }} | ${{ number_format($invoice->total, 2) }} | ${{ number_format($invoice->paid_amount ?? 0, 2) }} | ${{ number_format($invoice->balance_due ?? 0, 2) }} | {{ ucfirst(str_replace('_',' ', $invoice->status_label ?? 'unpaid')) }} | {{ ($invoice->days_overdue ?? 0) > 0 ? $invoice->days_overdue . ' days' : 'Not overdue' }} | {{ $invoice->currency->currency_code ?? 'N/A' }} |
| No outstanding fees found. | |||||||||