foreach($purchases as $p){
$template->previous[$o->id()]['purchases'][$p->id()] = array(
- 'name' => $o->name(),
- 'price' => $o->price(),
- 'type' => $o->type()
+ 'name' => $p->name(),
+ 'price' => $p->price(),
+ 'type' => $p->type()
);
}
}
foreach($purchases as $p){
$template->new[$p->id()] = array(
- 'name' => $o->name(),
- 'price' => $o->price(),
- 'type' => $o->type(),
+ 'name' => $p->name(),
+ 'price' => $p->price(),
+ 'type' => $p->type(),
'delete' => $system->url('delete', $p->id())
);
}