@if($product->image_path)
@else
Sin Imagen
@endif
@if($product->compare_price && $product->compare_price > 0)
@php
$discount = round((($product->compare_price - $product->price) / $product->compare_price) * 100);
@endphp
Oferta
-{{ $discount }}%
@endif
@if($product->category)
{{ $product->category->name }}
@endif
{{ $product->name }}
${{ number_format($product->price, 2) }}
@if($product->compare_price)
${{ number_format($product->compare_price, 2) }}
@endif