@if ($product->discount_price != 0 && $product->discount_price != null)
{{ number_format($product->price) }} {{ getCurrency() }}
{{ number_format($product->discount_price) }}
{{ getCurrency() }}
@else
{{ $product->display_price }}
{{ $product->price != 0 ? getCurrency() : '' }}
@endif