@foreach ($o->invoices as $io) @endforeach
# Issued Due Total Payments Outstanding
{{ $io->id }} {{ $io->created_at->format('Y-m-d') }} {{ $io->due_at->format('Y-m-d') }} ${{ number_format($io->total,2) }} ${{ number_format($io->paid,2) }} ${{ number_format($io->due,2) }}
@section('page-scripts') @css(datatables,bootstrap4) @js(datatables,bootstrap4|responsive) @append