@if ($product->image)
 }})
@else
Нет изображения
@endif
{{ $product->name }}
@if($product->price && $product->new_price)
{{ number_format($product->price, 0, '.', ' ') }} {{ $currencySymbol }}
{{ number_format($product->new_price, 0, '.', ' ') }} {{ $currencySymbol }}
@else
{{ number_format($product->price ?? $product->new_price, 0, '.', ' ') }} {{ $currencySymbol }}
@endif