@if($product->category && $product->category->name)
@if($product->has_discount)
R$ {{ number_format($product->price, 2, ',', '.') }}
R$ {{ number_format($product->final_price ?? $product->price, 2, ',', '.') }}
@else
R$ {{ number_format($product->price, 2, ',', '.') }}
@endif