@extends('layouts.app') @section('title', 'Board Report') @section('page-title', 'Board Meeting Financial Report') @push('styles') @endpush @section('content') {{-- Controls (no-print) --}}
Monthly P&L and account status for Board presentation.
| ↓ {{ $row->category }} | ${{ number_format($row->total, 2) }} |
| ↑ {{ $row->category }} | ${{ number_format($row->total, 2) }} |
| Invoice | Member | Period | LCI Unpaid | Balance Due | Due Date | Days Overdue | Status |
|---|---|---|---|---|---|---|---|
| {{ $inv->invoice_number }} | {{ $inv->member->full_name }} | {{ $inv->billing_period_display }} | ${{ number_format($inv->lci_amount - $inv->amount_paid, 2) }} | ${{ number_format($inv->balance_due, 2) }} | {{ $inv->due_date?->format('d M Y') ?? '—' }} | @if($inv->days_overdue > 0) {{ $inv->days_overdue }}d @else — @endif | {{ ucfirst($inv->status) }} @if($inv->lci_compliance_flag) @endif |