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