render('index', ['model' => $model]); } // месяц public function actionAuthors() { $model = new News(); return $this->render('authors', ['model' => $model]); } // по дням public function actionAuthorsd() { $model = new News(); return $this->render('authorsd', ['model' => $model]); } }