{{ $shop_infos->shop_name }}
{{ $shop_infos->business_type }}
{{ $shop_infos->address }}
Purchase Details
{{-- {{ $start_date }} To {{ $end_date }}
--}}
{{--
{{ \Carbon\Carbon::parse($start_date)->format('d-m-Y') }}
To
{{ \Carbon\Carbon::parse($end_date)->format('d-m-Y') }}
--}}
{{--
--}}
| Supplier Name: |
{{ $supplier->name ?? 'ALL Suppliers' }} |
| Address: |
{{ $supplier->address ?? ''}} |
| Mobile: |
{{ $supplier->phone ?? '' }} |
| Due: |
{{ $supplier->due ?? '' }} |
Report Time: {{ now()->format('d-m-Y H:i:s') }}
| Sl |
Entry Date |
Invoice No. |
Product Name |
Quantity |
Unit Price |
Total Price |
Discount (%) |
Unit Price After Discount |
Total After Discount |
Selling Price |
@foreach($purchase_details as $key=> $item)
| {{ $key+1 }} |
{{ $item->created_at->format('d-F-Y') }} |
{{ $item->invoice_no }} |
{{ $item->product->product_name }} |
{{ $item->qty }} |
{{ $item->unit_price }} |
{{ $item->total_price }} |
{{ $item->discount_percent }} |
{{ $item->unit_price_after_discount }} |
{{ $item->total_price_discounted }} |
{{ $item->selling_price }} |
@endforeach