{{ $info->site_name ?? 'Fast2Buys' }}
{{ $info->address ?? 'Bangladesh' }}
Phone: {{ $info->owner_phone ?? '' }}
Email: {{ $info->owner_email ?? '' }}
| SL. | Item Description | Qty | Price | Total |
|---|---|---|---|---|
| {{ $key + 1 }} | {{ $detail->product->name ?? 'Unknown Product' }} | {{ $detail->quantity }} | {{ number_format($detail->unit_price, 2) }} | @php $row_total = $detail->unit_price * $detail->quantity; $total += $row_total; @endphp{{ number_format($row_total, 2) }} |
| Subtotal: | {{ number_format($total, 2) }} |
|---|---|
| Delivery Charge: | {{ number_format($item->shipping_charge ?? 0, 2) }} |
| Discount: | - {{ number_format($item->discount, 2) }} |
| Grand Total: | @php $delivery_amt = $item->shipping_charge ?? 0; $grand_total = $total - $item->discount + $delivery_amt; @endphp{{ number_format($grand_total, 2) }} TK |