[ 'class' => 'yii\web\ErrorAction', ], 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, ], ]; } /** * Displays homepage. * * @return mixed */ public function actionIndex() { return $this->redirect(['search/project']); } public function actionView($tender_id) { $model = Project::findOne($tender_id); return $this->render('view',[ 'model' => $model ]); } }