{{ $shop_infos->shop_name }}
{{ $shop_infos->business_type }}
{{ $shop_infos->address }}
All Purchase
{{-- {{ $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 |
Invoice_No |
Supplier Name |
Total Amount |
Paid |
Due |
@foreach($purchases as $key=> $item)
| {{ $key+1 }} |
{{ \Carbon\Carbon::parse($item->date)->format('d-F-Y') }} |
{{ $item->invoice_no }} |
{{ $item->supplier->name ?? '' }} |
{{ $item->net_amount }} |
{{ $item->paid_amount }} |
{{ $item->due_amount }} |
@endforeach