| Invoice No | Port | Amount | Due Date | Status | Attachments | Actions |
|---|---|---|---|---|---|---|
| {{ $record->invoice_no ?? 'N/A' }} | {{ $record->port ?? 'N/A' }} | ${{ number_format($record->amount ?? 0, 2) }} | @if($record->due_date) {{ $record->due_date->format('d/m/Y') }} @else N/A @endif | {{ $record->status->name ?? 'Unpaid' }} | {{ $record->attachments->count() }} files |
All records for this vessel are paid.
| Invoice No | Port | Amount | Due Date | Status | Attachments | Actions |
|---|---|---|---|---|---|---|
| {{ $record->invoice_no ?? 'N/A' }} | {{ $record->port ?? 'N/A' }} | ${{ number_format($record->amount ?? 0, 2) }} | {{ $record->due_date ? $record->due_date->format('d/m/Y') : 'N/A' }} | {{ $record->status->name ?? 'Paid' }} | {{ $record->attachments->count() }} files |
No records have been marked as paid yet.