| Report Summary |
| Start Date | : | @if(!empty($data->startDate)) {{ $Controller::dateFormatter($data->startDate) }} @endif |
| End Date | : | @if(!empty($data->endDate)){{ $Controller::dateFormatter($data->endDate) }}@endif |
| Total Collection Amount | : | {{ number_format($totalCollection, 2) }} |
| Total Beneficiary Amount | : | {{ number_format($totalBeneficiaryAmount, 2) }} |
| Total Discount Amount | : | {{ number_format($totalDiscountAmount, 2) }} |
| Net Total Amount | : | {{ number_format($netTotalAmount, 2) }} |
| In Word | : | {{ $totalInWord }} |
|
Collection Report
|
| SL | Invoice Date | Invoice No | Customer Name | Customer Phone | Beneficiary Name | Product Name | Unit Price | Discount Amount | Beneficiary Amount | Net Amount |
| {{ $index + 1 }} | {{ !empty($invoiceDate) ? $Controller::dateFormatter($invoiceDate) : '' }} | {{ $req->invoiceNo ?? '' }} | {{ $req->customerName ?? '' }} | {{ $req->customerPhone ?? '-' }} | {{ $req->beneficiaryName ?? '' }} | {{ $req->productName ?? '' }} | {{ number_format($unitPrice, 2) }} | {{ number_format($discAmount, 2) }} | {{ number_format($beneficiaryAmount, 2) }} | {{ number_format($netAmount, 2) }} |
| Total = | {{ number_format($tableUnitPriceTotal, 2) }} | {{ number_format($tableDiscountTotal, 2) }} | {{ number_format($tableBeneficiaryTotal, 2) }} | {{ number_format($tableNetTotal, 2) }} | ||||||