Advertisement
nazmiwafiy

actionIndex

Dec 6th, 2018
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1.     /**
  2.      * Lists all Contact models.
  3.      * @return mixed
  4.      */
  5.     public function actionIndex()
  6.     {
  7.         $searchModel = new SearchContact();
  8.         $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
  9.  
  10.         return $this->render('index', [
  11.             'searchModel' => $searchModel,
  12.             'dataProvider' => $dataProvider,
  13.         ]);
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement