WYKA CONSULTING GROUP
Addres: Arua Park Plaza
Email: finance@wykaconsults.com
Website: wykaconsults.com
Tel: +256 784 326279
Invoices Report
From {{ date('M d, Y',strtotime($request->start_date)).' To '.date('M d, Y',strtotime($request->end_date)) }}
@php $gross_amount = 0; $paid = 0; $balance = 0; @endphp @foreach($invoices as $invoice) @php $gross_amount += $invoice->gross_amount; $paid += $invoice->paid; $balance += $invoice->balance; @endphp @endforeach
Invoice No Customer Name Issue Date Amount Balance Issued By
{{ sprintf("%05d",$invoice->invoice_no) }} {{ $invoice->customer->name }} {{ date('M d, Y',strtotime($invoice->issue_date)) }} {{ number_format($invoice->gross_amount) }} {{ number_format($invoice->balance) }} {{ $invoice->user->name }}
Total Invoices {{ $invoices->count() }}
Amount {{ number_format($gross_amount) }}
Paid {{ number_format($paid) }}
Balance {{ number_format($balance) }}