Magento – Magento2 : What is the difference between regular price and final price

magento2

What is the difference between regular price and final price in magento2?

product->getPriceInfo()->getPrice('final_price')->getAmount()->getBaseAmount();

and

$product->getPriceInfo()->getPrice('regular_price')->getAmount()->getValue();

Best Answer

  1. Price in the sense of cost of the product.
  2. Where as Regular price is product's original price.
  3. And Final price is discounted price or special price.
Related Topic