@extends('layouts.pdf') @section('content')
Generated on: {{ now()->format('d.m.Y') }}
| ID | Name | Category | SKU | Size/Variation | Color | Total Quantity | Remaining Quantity | Dimensions (LxWxH) | Weight | Volume | Max Load | Status |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $product->id }} | {{ $product->name }} | {{ $product->category->name ?? '-' }} | {{ $product->sku ?? '-' }} | - | {{ $product->color->name ?? '-' }} | {{ $product->quantity }} | {{-- Remaining --}}{{ $product->total_quantity ?? $product->quantity }} | {{-- Total --}}{{ $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 }} | {{-- Remaining --}}{{ $option->total_quantity ?? $option->quantity }} | {{-- Total --}}{{ $variation->length.'x'.$variation->width.'x'.$variation->height }} | {{ $variation->weight }} | {{ $variation->volume }} | {{ $variation->max_load }} | {{ $variation->status }} |