@if($product->image)
 }})
@else
 }})
@endif
@php
$discount = 0;
if ($product->discount_price && $product->price > $product->discount_price) {
$discount = round(
(($product->price - $product->discount_price) / $product->price) * 100,
);
}
@endphp
@if ($discount)
{{ $discount }}% OFF
@endif