@include('global.header-links')
@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 Category

Add product to a category.
Create new category

General


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

Inventory

Variations

@foreach ($equipment->completeStock as $item) @endforeach
Variation Unit Price Selling 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.footer-links')