예제 #1
0
 /**
  * Displays homepage.
  *
  * @return mixed
  */
 public function actionIndex()
 {
     $model = new JobSearch();
     if ($model->load(Yii::$app->getRequest()->post())) {
         return $this->render('index', ['model' => $model, 'result' => $model->searchJobsIndex()]);
     }
     return $this->render('index', ['model' => $model]);
 }