| Name | : | {{ $purchase->supplier->name_bangla ?? $purchase->supplier->name }} |
| Address | : | {{ str_replace(' ','',$purchase->supplier->address_bangla ?? $purchase->supplier->address) }} |
| Contact | : | {{ $purchase->supplier->phone??'' }} |
| SL | Product Name | Unit Price | Quantity | Unit Selling Price | Total Selling Price | Total |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $purchaseOrderDetail->product->name ?? '' }} | {{ $purchaseOrderDetail->unit_price }} | {{ $purchaseOrderDetail->quantity }} | {{ \App\Helpers\Helper::number_bn_format($purchaseOrderDetail->unit_selling_price) }}/- tk | {{ \App\Helpers\Helper::number_bn_format($purchaseOrderDetail->total_selling_amount) }}/- tk | {{ \App\Helpers\Helper::number_bn_format($purchaseOrderDetail->total_amount) }}/- tk |
| Total | {{ \App\Helpers\Helper::number_bn_format($t_purchase_price) }}/- tk | |||||
| Total Selling Price | {{\App\Helpers\Helper::number_bn_format($t_selling_price)}}/- tk |
|---|---|
| Sub Total | {{\App\Helpers\Helper::number_bn_format($t_purchase_price)}}/- tk |
| Discount | {{\App\Helpers\Helper::number_bn_format($purchase->discount)}}/- tk |
| Grand Total | {{\App\Helpers\Helper::number_bn_format($purchase->grand_total_amount)}}/- tk |
| Paid | {{\App\Helpers\Helper::number_bn_format($purchase->paid_amount)}}/- tk |
| Due | {{\App\Helpers\Helper::number_bn_format($purchase->due_amount)}}/- tk |