Добрый день, пытаюсь сделать кнопку, где при клике открывается форма. Но выпадает ошибка:
Call to a member function hasErrors() on null
Требует:
if ($this->model->hasErrors($attributeName)) {
Html::addCssClass($options, $this->form->errorCssClass);
}
Controller
public function actionInsert() {
$time = new Feedback();
if ($time->load(Yii::$app->request->post())) {
if ($time->insert()) {
return $this->redirect(['page/index']);
}
Yii::$app->session->setFlash(
'success',
false
);
}
return $this->render('insert', ['time' => $time]);
}