You are viewing an old revision of this post, from February 20, 2020 @ 15:13:51. See below for differences between this version and the current revision.

Magento 2 – Get min price or max price from product collection

Today we learn about how to get min price and max price from product collection. First, you have to get a collection of the product. Then their two predefined functions for getting min price getMinPrice and get max price getMaxPrice

Now we implement the code for getting min price and max price.

protected $_productCollectionFactory;

public function __construct(
        \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $productFactory
    ) {
        $this->_productCollectionFactory = $productFactory;
    }


public function getProductCollection()
    {
      $productCollection = $this->_productCollectionFactory->create();
      $maxPrice = $productCollection>getMaxPrice();
     $minPrice = $productCollection>getMinPrice();
    }

}

You can see the example of Min Price and Max Price in Layer collection.Follow Magento\Catalog\Model\Layer\Filter\AbstractFilter.php $this->getLayer()->getProductCollection()->getMaxPrice();
$this->getLayer()->getProductCollection()->getMinPrice();

Revisions

  • February 20, 2020 @ 15:13:53 [Current Revision] by Sharing Solution
  • February 20, 2020 @ 15:13:51 by Sharing Solution
  • February 20, 2020 @ 15:13:20 by Sharing Solution

Revision Differences

There are no differences between the February 20, 2020 @ 15:13:51 revision and the current revision. (Maybe only post meta information was changed.)

No comments yet.

Leave a Reply