@props(['product'])
@if (!is_null($product->off_rate) && $product->off_rate != 0)
%{{ $product->off_rate }}
@endif  Blesser

{{ $product->title }}

@if ($product->isInStock())
@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
@else
{{ __('Out of stock') }}
@endif
@if (false)
@endif