php - Is there any way of changing the layout of view in Yii2? -
how override layout used controller render view in third party module?
inside relative action:
public function actionyouraction($id) { $this->layout = 'yournewlayout'; return $this->render('yourview', ['model' =>$model]); }
Comments
Post a Comment