@include('Global.dashboardheaderlinks')
@include('partials.sidebar')
@include('partials.header')

Edit Product

@if(session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif
@csrf

Product Image

Set the product image. Only *.png, *.jpg and *.jpeg image files are accepted

Status

Set the product status.

Product Details

Add product to a category.

General


{{--
--}}
Set a description to the product for better visibility.

Inventory

Variations

@foreach ($products->completeStock as $item) @endforeach
Variation Unit Price Sale Price Remaining Quantity Action
@if($item->status == 0)

Inactive

@endif @foreach ($item->productGroups as $variation) {{$variation->attribute->name.': '.$variation->attributeOption->name}}
@endforeach
${{$item->unit_price}} ${{$item->sale_price}} {{$item->qty - $item->qty_sold}} Actions
@include('partials.footer')
@include('Global.dashboardfooterlinks')