Dashboard
All Customer ({{ $allCustomer }})
All Modal ({{ $allCategories }})
All Products ({{ $allProducts }})
-
Orders
-
-
| Order Number | Container No | Total Price | Quantity | Date | Action |
|---|---|---|---|---|---|
| {{ $allOrder->orderNumber }} | {{ $allOrder->ContainerNo }} | @foreach ($groupedOrders[$allOrder->ContainerNo] as $order) @php $totalPrice += $order->totalprice; @endphp @endforeach {{ number_format($totalPrice) }} | @foreach ($groupedOrders[$allOrder->ContainerNo] as $order) @php $totalQuantity += $order->totalItems; @endphp @endforeach {{ number_format($totalQuantity) }} | {{ $allOrder->date }} |