Guest User

Untitled

a guest
Jan 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $collection = $this->productCollectionFactory->create();
  2. $collection->addAttributeToSelect('*');
  3. $collection->load();
  4.  
  5. foreach ($collection->getItems() as $productItem) {
  6. $product = $productItem->getData();
  7. echo $product['name'].'<br>';
  8. }
Add Comment
Please, Sign In to add comment