Printed On :{{ Carbon\Carbon::now('GMT+5:30')->format('l, d. F Y h:i') }}
| Particulars | Unit | Qty | Remarks |
| Shop:
{{ $order->debitLedger->name }} Sales Staff: {{ $order?->insertUser->name ?? '' }} |
|||
| Stcok Group: {{ $group->name }} | |||
| {{ $item->stockItem->name }} | {{ $item->unit->symbol }} | {{ $item->quantity }} | @php if ($item->stockItem->weight != null) { $weight = $item->base_qty * intval($item->stockItem->weight); } else { $weight = 0; } $totalWeight += $weight; @endphp{{ $item->remarks }} |
| Sub Total | @if ($stock_group_id != null) @php $sum = $order ->items() ->whereHas('stockItem', function ($q) use ($stock_group_id) { $q->where('stock_group_id', $stock_group_id); }) ->sum('quantity'); $total += $sum; @endphp {{ $sum }} @else {{ $order->items->sum('quantity') }} @php $total += $order->items->sum('quantity'); @endphp @endif | ||
Remarks :{{ $order->remarks }}
| Total Qty | {{ $total }} | |
| Total Weight | {{ $totalWeight }} |