1

By providing $product->getPrice() the result which I get is 29.0000. How can I fetch the price in correct format along with currency i.e $29. Please help.

Teja Bhagavan Kollepara
  • 3,816
  • 5
  • 32
  • 69
Bridgit Thomas
  • 165
  • 5
  • 16

1 Answers1

1

By default product object return as float price value without currency symbol.

You can get price format with below syntax,

echo $this->helper('Magento\Framework\Pricing\Helper\Data')->currency( $product->getPrice(),true,false);

Using above syntax you can get price with currency format.

Rakesh Jesadiya
  • 42,221
  • 18
  • 132
  • 183