ArticlesController.php 320 B

12345678910111213
  1. <?php
  2. namespace app\controllers;
  3. use yii\web\Controller;
  4. class ArticlesController extends Controller
  5. {
  6. public function actionIndex(){
  7. $news_query = \app\models\News::find()->joinWith('topics t')->andFilterWhere(['news.type'=>6]);
  8. return $this->render("index",["news_query"=>$news_query]);
  9. }
  10. }