Here is my Code, how to and pass data from controller to layout
$arr = array();
$arr['layout'] = 'example';
$this->layout()->calllayout = $arr;
Here is my Code, how to and pass data from controller to layout
$arr = array();
$arr['layout'] = 'example';
$this->layout()->calllayout = $arr;
Before ViewModel Write serVariable by $this->layout() like:
$arr = array();
$arr['layout'] = 'example';
$this->layout()->setVariable('variableName', $arr);
and Access it like :
echo $this->variableName['layout'];