@extends('admin.layouts') @section('title', 'Product Variants') @section('content')

View Variant

@csrf {{-- Row 1 --}}
{{-- Row 2 --}}
Variants - {{ $product->title }}
{{-- @foreach ($variants as $variant) @endforeach --}} {{-- ✅ PARENT PRODUCT ROW FIRST --}} {{-- ✅ VARIANTS --}} @foreach ($variants as $variant) @endforeach
# Variant ID Variant Name MRP Purchase Price Selling Price Stock BarCode Action
{{ $loop->iteration }} {{ $variant->product_id }}
# {{ $product->product_id }} {{ $product->title }} {{ number_format($product->mrp ?? 0, 2) }} {{ number_format($product->purchase_price ?? 0, 2) }} {{ number_format($product->sell_price ?? 0, 2) }} {{ $product->stock ?? 0 }} {{ $product->barcode1 ?? '-' }} Main Product
{{ $loop->iteration }} {{ $variant->product_id }}
@endsection