@extends('layouts.app') @section('stitle', 'Product') @section('title', 'Product') @section('content')
@foreach($categoryProduct as $key=> $product) @if ($product->status =='1') @else @endif @endforeach
S.NO Name SKU Category Price Status Actions
{{ ++$key }} {{$product->name}} {{$product->sku}} {{$product->getCategory->name}} {{$product->price}}ActiveDeactive
@endsection