public function init() { parent::init(); $this->models = Product::find()->limit($this->limit)->all(); }
public function actionIndex() { $models = Product::find()->all(); return $this->render('index', ['models' => $models]); }