[ 'class' => VerbFilter::className(), 'actions' => [ 'logout' => ['post'], ], ], ]; } /** * {@inheritdoc} */ public function actions() { return [ 'error' => [ 'class' => 'yii\web\ErrorAction', ], 'demo' => [ 'class' => 'yii\web\ViewAction', ], ]; } public function actionIndex() { $this->layout = false; return $this->render('index'); } public function actionDashboard() { return $this->render('dashboard'); } public function actionIcons() { return $this->render('pages/icons'); } }