コード例 #1
0
ファイル: NewProducts.php プロジェクト: AsterAI-corp/product
 public function init()
 {
     parent::init();
     $this->models = Product::find()->limit($this->limit)->all();
 }
コード例 #2
0
 public function actionIndex()
 {
     $models = Product::find()->all();
     return $this->render('index', ['models' => $models]);
 }