@php $base = $product->product_amount ?? 0; $price = $base * $rate; $img = $product->image_1 ?: asset('img/product/product-1.jpg'); if ($currency === 'AED') { $formattedPrice = number_format($price, 2) . ' ' . $symbol; } else { $formattedPrice = $symbol . ' ' . number_format($price, 2); } @endphp
@if(!empty($product->is_new))
New
@endif
    {{-- Zoom --}}
  • {{-- Wishlist --}}
  • {{-- Add to cart --}}
{{ $product->product_name }}
{{ $formattedPrice }}