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

Products

Add Product
@if(session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif @foreach ($equipments as $item) @endforeach
Image Product Category SKU Price Status Actions
{{$item->name}} {{$item->category->name}} {{$item->completeStock[0]->sku}} ${{ $item->completeStock[0]->sale_price }} @if($item->status == 1)
Published
@else
Delete
@endif
Actions
@include('partials.footer')
@include('global.footer-links')