Generated on: {{ now()->format('d.m.Y') }}
| ID | Name | Category | SKU | Size/Variation | Color | Total Qty | Remaining Qty | Dimensions (LxWxH) | Weight | Volume | Max Load | Status | Variant Status | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $product->id }} | {{ $product->name }} | {{ $product->category->name ?? '-' }} | {{ $product->sku ?? '-' }} | - | {{ $product->color->name ?? '-' }} | - | {{ $product->quantity ?? 0 }} | {{ $product->total_quantity ?? $product->quantity ?? 0 }} | {{ $product->length.'x'.$product->width.'x'.$product->height }} | {{ $product->weight }} | {{ $product->volume }} | {{ $product->max_load }} | {{ $product->status }} | - |
| {{ $product->id }} | {{ $product->name }} | {{ $product->category->name ?? '-' }} | {{ $option->sku }} | {{ $variation->size->name ?? $variation->variation->name ?? '-' }} | {{ $option->color->name ?? '-' }} | {{ $option->quantity ?? 0 }} | {{ $option->total_quantity ?? $option->quantity ?? 0 }} | {{ $variation->length.'x'.$variation->width.'x'.$variation->height }} | {{ $variation->weight }} | {{ $variation->volume }} | {{ $variation->max_load }} | {{ $variation->status }} | {{ $isDisabled ? 'Disabled' : 'Enabled' }} |