I have the following array:
$cards = array();
foreach($cardList as $card) {
if ($card->getIsActive()) {
$myValue = 'my_value';
$cards[] = $card->getData(); // need to add $myValue to $card data
}
}
$result = array(
'cards' => $cards
);
echo json_encode($result);
How would I be able to add $myValue
to $card->getData()
so it appears in my $result
?