In this following code. How to send data to the layout?
class IndexController extends Phalcon\Mvc\Controller 
{
    public function initialize()
    {
        $this->view->setTemplateAfter('head_and_foot');
       /// ???? 
    }
    public function indexAction()
    {
       $this->view->pick('index/body');
    }
}