@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Product

@csrf

Product Image

Price

{{$product->price}}

Product Details

General Information


{!!$product->description!!}

Variations

@foreach ($product->stocks as $stockItem) @foreach ($stockItem->productGroups as $productGroupsItem) @endforeach @endforeach
SKU Variation Unit Price Sale Price Quantity Status Action
{{$stockItem->sku}} @foreach ($productGroupsItem->attributes as $attribute) {{ucfirst($attribute->name)}} @endforeach ${{$stockItem->unit_price}} ${{$stockItem->sale_price}} {{$stockItem->qty - $stockItem->qty_remaining}} @if($stockItem->status == 0)

Inactive

@else

Active

@endif
Actions
@include('partials.footer')
@include('global.footer-links')