Exemple #1
0
 /**
  * Displays a single Items model.
  * @param integer $id
  * @return mixed
  */
 public function actionView($id)
 {
     $searchModelComments = new CommentsSearch();
     $dataProviderComments = $searchModelComments->searchItemComments($id);
     //        var_dump($dataProviderComments);
     //        exit();
     return $this->render('view', ['model' => $this->findModel($id), 'dataProviderComments' => $dataProviderComments]);
 }