@extends('layout.master') @section('content')
@if (session()->has('msg'))
{!! session()->get('msg') !!}
@endif

Ship

@csrf
@foreach($orders as $key => $value) @php $orderPackagesid = 'packages'.'-'.$value['order_id'].'-'.$key; $orderWeightId = 'weight'.'-'.$value['order_id'].'-'.$key; $orderLengthId = 'length'.'-'.$value['order_id'].'-'.$key; $orderWidthId = 'width'.'-'.$value['order_id'].'-'.$key; $orderHeightId = 'height'.'-'.$value['order_id'].'-'.$key; $orderQuantityId = 'quantity'.'-'.$value['order_id'].'-'.$key; $orderUnitId = 'unitPrice'.'-'.$value['order_id'].'-'.$key; $orderAddButtonId = 'addBoxButton'.'-'.$value['order_id'].'-'.$key; $sameAsProductIds = 'sameAsProductIds'.'-'.$value['order_id'].'-'.$key; $addMoreIds = 'add-more-ids'.'-'.$value['order_id'].'-'.$key; $skuIds = 'skusId'.'-'.$value['order_id'].'-'.$key; @endphp @endforeach
Order Id SaP Box Qty Unit Per Box Weight Package Box Dimension SKUs Action
Length Width Height
{{$value['order_id']}}
@foreach($value['products'] as $key3 => $productList) {{$productList['sku']}}({{$productList['quantity']}}) @endforeach
@endsection