#PagesController code#
$page = Pages::findFirstById($id);
if (!$page) {
$this->flash->error("Page was not found.");
return $this->forward("pages/index");
}
//print_r($page);
**// how to assign $page to volt templat and how manage the $page in volt template.**
$this->view->
#volt template code #
.....
Thanks for your help.