Sales Order Number: {{ $so_no }}
Date: {{ now()->format('d/m/Y') }}
Generated On: {{ now()->format('d/m/Y H:i:s') }}
| Total Boxes | {{ $totalBoxesAll }} | |
|---|---|---|
| Total Weight | {{ rtrim(rtrim(number_format((float)$totalWeightAll, 3, '.', ''), '0'), '.') }} | |
| Box Number | Dimension | Weight |
| {{ $r['box'] }} | {{ $r['dim'] }} | {{ $r['wt'] }} |
Sales Order Number: {{ $so_no }}
Date: {{ now()->format('d/m/Y') }}
Generated On: {{ now()->format('d/m/Y H:i:s') }}
| Box Number | Dimension | Weight |
|---|---|---|
| {{ $boxArr[$i] ?? '-' }} | {{ $dimArr[$i] ?? ($dimArr[0] ?? '-') }} | {{ $wtArr[$i] ?? ($wtArr[0] ?? '-') }} |
| Total Boxes | {{ $maxLen }} | |
| Serial No | Item Name | Quantity |
|---|---|---|
| {{ $serial++ }} | {{ $itemData['item'] ?? 'N/A' }} | {{ $itemData['qty'] ?? 'N/A' }} |
Sales Order Number: {{ $so_no }}
Date: {{ now()->format('d/m/Y') }}
Generated On: {{ now()->format('d/m/Y H:i:s') }}
| Box Number | Dimension | Weight |
|---|---|---|
| {{ $boxArr[$i] ?? '-' }} | {{ $dimArr[$i] ?? ($dimArr[0] ?? '-') }} | {{ $wtArr[$i] ?? ($wtArr[0] ?? '-') }} |
| Total Boxes | {{ $maxLen }} | |
| Serial No | Item Name | Quantity |
|---|---|---|
| {{ $serial++ }} | {{ $itemData['item'] ?? 'N/A' }} | {{ $itemData['qty'] ?? 'N/A' }} |
| Item | Ordered Qty | Picked Qty | Short Qty |
|---|---|---|---|
| {{ $s['item'] }} | {{ rtrim(rtrim(number_format((float)$s['ordered_qty'], 4, '.', ''), '0'), '.') }} | {{ rtrim(rtrim(number_format((float)$s['picked_qty'], 4, '.', ''), '0'), '.') }} | {{ rtrim(rtrim(number_format((float)$s['short_qty'], 4, '.', ''), '0'), '.') }} |