{{ $shop_infos->shop_name }}
{{ $shop_infos->business_type }}
{{ $shop_infos->address }}
All Collections From Customers
{{-- {{ $start_date }} To {{ $end_date }}
--}}
{{ \Carbon\Carbon::parse($start_date)->format('d-m-Y') }}
To
{{ \Carbon\Carbon::parse($end_date)->format('d-m-Y') }}
{{--
--}}
{{--
| Name: |
{{ $customer_infos->name }} |
| Address: |
{{ $customer_infos->address }} |
| Mobile: |
{{ $customer_infos->phone }} |
| Due: |
{{ $customer_infos->due }} |
--}}
Report Time: {{ now()->format('d-m-Y H:i:s') }}
| Sl |
Date |
Receipt No. |
Invoice No. |
Customer Name |
Total |
Cash |
Bank |
Discount |
Invoice Due |
Total Due |
Acc No |
Bank |
A/C Type |
Cheque No. |
@foreach($collections as $key=> $item)
| {{ $key+1 }} |
{{ $item->created_at->format('d-F-Y') }} |
{{ $item->receipt_no }} |
{{ $item->product_invoice }} |
{{ $item->customer->name }} |
{{ $item->total_amount }} |
{{ $item->cash_amount }} |
{{ $item->bank_amount }} |
{{ $item->discount }} |
{{ $item->invoice_due }} |
{{ $item->due_amount }} |
{{ $item->acc_no }} |
{{ $item->bank_name }} |
{{ $item->branch }} |
{{ $item->cheque_no }} |
@endforeach