@foreach($products as $product) @foreach($product->available_sizes as $size => $available) @if($available) @if($loop->first) @endif @endif @endforeach @endforeach
# الصورة اسم المنتج اللون الكود المقاس الكمية الإجراءات
{{ $loop->parent->iteration }} @if($product->hasMedia('products')) @else بدون صورة @endif {{ $product->name }} {{ $product->color }} {{ $product->code }} @if($product->size_type === 'numbers') ({{ $size }}) @else {{ strtoupper($size) }} @endif @if(isset($editing[$product->id][$size]) && $editing[$product->id][$size]) @else {{ $quantities[$product->id][$size] ?? 0 }} @endif @if(isset($editing[$product->id][$size]) && $editing[$product->id][$size]) @else @endif
{{ $products->links() }}