$article = News::findOne($id);
$model = News::find()->where(['id' => $id])->one();
$model->views_total++;
$model->save();
if (($article = News::findOne($id)) === null) {
throw new yii\web\NotFoundHttpException();
}
$article->updateCounters(['views_total' => 1]);