コード例 #1
0
ファイル: PostController.php プロジェクト: obepyc/yii2-news
 public function actionIndex()
 {
     $post = new Post();
     $category = new Category();
     return $this->render('index', ['posts' => $post->getPosts(), 'categories' => $category->getCategories()]);
 }