{{-- resources/views/reports/invoice-aging.blade.php --}} @extends('layouts.app') @section('title', 'Invoice Aging') @section('page_title', 'Invoice Aging Report') @section('page_subtitle', 'Outstanding invoices by age') @section('content') @include('reports.partials.nav') {{-- Total --}}
| Invoice # | Guest / Company | Invoice Date | Due Date | Total | Balance | |
|---|---|---|---|---|---|---|
| {{ $inv->invoice_number }} | @if($inv->guest) {{ $inv->guest->first_name }} {{ $inv->guest->last_name }} @elseif($inv->company) {{ $inv->company->name }} @else — @endif | {{ $inv->invoice_date->format('d M Y') }} |
{{ $inv->due_date->format('d M Y') }}
@if($key !== 'current')
{{ $inv->due_date->diffForHumans() }} @endif |
{{ $inv->currency }} {{ number_format($inv->total_amount, 2) }} | {{ $inv->currency }} {{ number_format($inv->balance_due, 2) }} | View → |
All invoices are settled!
No outstanding balances.