@extends($master)
@section('title', 'Manage Product')
@section('body')
| SL No |
Name |
Category Name |
Image |
Status |
Action |
@foreach($products as $product)
| {{$loop->iteration}} |
{{$product->name}} |
{{isset($product->category->name) ? $product->category->name : ' '}} |
}}) |
{{$product->status == 1 ? "Published" : 'Unpublished'}} |
|
@endforeach
@endsection