{{ $shop_infos->shop_name }}
{{ $shop_infos->business_type }}
{{ $shop_infos->address }}
Datewise Sales Statement
{{-- {{ $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 |
Invoice Date |
Invoice Time |
Invoice No. |
Invoice Total |
Discount |
Total Paid |
Cash Amount |
Bank Amount |
Invoice Due |
Profit |
Return |
{{-- Purchase |
Paid |
Discount |
Due |
Status | --}}
@foreach($order_infos as $key=> $item)
| {{ $key+1 }} |
{{ $item->order_date }} |
{{ $item->created_at->format('H:i:s') }} |
{{ $item->invoice_no }} |
{{ $item->sub_total}} |
{{ $item->total_discount }} |
{{ $item->pay }} |
{{ $item->cash_amount }} |
{{ $item->bank_amount }} |
{{ $item->due }} |
{{ $item->profit }} |
{{ $item->return_amount }} |
{{-- {{ $item->sub_total }} |
{{ $item->pay }} |
|
{{ $item->due }} |
{{ $item->order_status }} | --}}
@endforeach