@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