Product Details
Product : {{$product->name}}
Sku : {{$product->sku}}
Category : {{ $product->category?$product->category->name:''}}
Brand : {{ $product->brand?$product->brand->name:''}}
Type : {{ $product->type}}
Purchase Price : {{$product->purchase_price}}
Selling Price : {{$product->sell_price}}
Color : {{$product->color}}
@if($product->image)
Product Image :
@endif
@foreach ($product->images as $key => $image)
@endforeach
@if($product->description)
Product Description : {{$product->description}}
@endif
@if($product->body)
Body : {!!$product->body!!}
@endif
@if($product->feature)
Feature : {!!$product->feature!!}
@endif
@if($product->discount_type)
Discount Type : {{$product->discount_type}}
@endif
@if($product->dicount_amount !=0)
Discount Amount : {{$product->dicount_amount}}
@endif
@if($product->after_discount !=0)
After Discount : {{$product->after_discount}}
@endif