@extends('templates/report') @section('reportTitle') Accounts Receivable Report Sample @endsection @section('reportHeader')
REPORT TYPE : ACCOUNTS RECEIVABLE REPORT DATES : 01 Mar 2022 to 31 Mar 2022
@endsection @section('content') @if($receivables) @foreach($receivables as $receivable) @endforeach @endif
Number Particulars Terms Billing Date Due Date Amount Payment Outstanding Overdue
{{$receivable->billing_no}} {{$receivable->particulars}} {{$receivable->terms.' '.$receivable->unit}} {{$receivable->billingDate}} {{$receivable->amountDetails}} {{$receivable->payment}} {{$receivable->outstanding}}
Count: Total:
@endsection