ID |
Product Id |
Product Name |
Product Image |
Product Price |
Brand |
Stock |
Ctegories |
Status |
Product Variant |
Action |
@if($product == "" && $product->isEmpty())
No data found. |
@else
@foreach($product as $key => $item)
{{ $key + 1 }} |
{{ $item->product_id ?? ''}} |
{{ $item->name ?? ''}} |
@if($item->featured_image)
@else
No Image
@endif
|
Mrp: {{ $item->mrp ?? ''}}/Selling Price: {{ $item->selling_price ?? ''}}/Discount: {{ $item->discount ?? ''}} |
{{ $item->brand->name ?? '' }} |
{{ $item->stock ?? ''}} |
{{ $item->category->name ?? '' }}
@if(!empty($item->category->name) && !empty($item->subCategory->name)) -> @endif
{{ $item->subCategory->name ?? '' }}
@if(!empty($item->subCategory->name) && !empty($item->childCategory->name)) -> @endif
{{ $item->childCategory->name ?? '' }}
|
{{ $item->status ?? ''}} |
Add Variant |
|
@endforeach
@endif
@include('admin.layouts.footer')