In this post I am going to explain how to get product reviews with rating in magento 2. 1. Using Dependency Injection Add below code snippet in Block class. protected $_reviewCollectionFactory; protected $_storeManager; public function __construct( \Magento\Backend\Block\Template\Context $context, \Magento\Review\Model\ResourceModel\Review\CollectionFactory $reviewCollectionFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, array $data = [] ) { $this->_reviewCollectionFactory = $reviewCollectionFactory; $this->_storeManager = $storeManager; parent::__construct($context,…


Recent Comments