@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')
Product
@csrf
Product Image
Edit
Price
{{$product->price}}
Product Details
Categories
{{$product->category->name}}
General Information
Product Inventory
General Information
Product Name
Description
{!!$product->description!!}
Media
Drop files here or click to upload.
Upload up to 10 files
Set the product media gallery.
Variations
SKU
Variation
Unit Price
Sale Price
Quantity
Status
Action
@foreach ($product->stocks as $stockItem) @foreach ($stockItem->productGroups as $productGroupsItem)
{{$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
Edit
@if($stockItem->status == 1)
Inactive
@else
Active
@endif
@endforeach @endforeach
@include('partials.footer')
@include('global.footer-links')