$this->render('another_template',['prop'=>$val]);//шаблон в этой же директории
$this->renderFile('@app/some/path/views/another_template',['prop'=>$val]);//шаблон из другого места
<?php $this->beginContent('@app/views/layouts/base.php'); ?>
//Some another content - внедрение в вывод контента вызываемого layout
<?php $this->endContent(); ?>