I have a resultset that return from paginator
$Products = $paginator->getPaginate();
I am trying to assgin a new property for each of Product, but it is not working, I wondering is there a way to make it work?
$imageList = array(
'imagename1.jpg',
'imagename2.jpg',
);
foreach($Products->items as $p){
$p->imageList = $imageList;
}
currently $p->imageList is not working.