@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->client->full_name ?? 'N/A' }} | {{ $invoice->invoice_number }} | {{ $invoice->invoice_date->format('M j, Y') }} | {{ $invoice->due_date->format('M j, Y') }} | ${{ number_format($invoice->total, 2) }} | ${{ number_format($collected, 2) }} | ${{ number_format($balance, 2) }} | {{ ucfirst(str_replace('_',' ',$status)) }} | {{ $invoice->due_date < now() ? now()->diffInDays($invoice->due_date) . ' days' : 'Not overdue' }} | {{ $invoice->currency->code ?? 'N/A' }} |
| No outstanding fees found. | |||||||||