Product collection is not showing Products on frontend – Magento
here is my block file: path:-VendorModuleBlock <?php namespace VendorModuleBlock; class Product extends MagentoFrameworkViewElementTemplate { protected $_productCollectionFactory ; public function __construct( MagentoBackendBlockTemplateContext $context, MagentoCatalogModelResourceModelProductCollectionFactory $productCollectionFactory, array $data = [] ) { $this->_productCollectionFactory = $productCollectionFactory; parent::__construct($context, $data); } public function getProductCollection() {…