I try this, but the data is not transferred \ controller
public function actionIndex ()
{ $categories = Categories::find()->asArray()->all(); print_r($categories); return $this->render('index', compact('categories')); } index.php
<?php foreach ($categories as $prod) :?> <div class="product"> <a href="#" class="product_img"> <img src="images/<? echo $prod['img'];?> </a> </div> <?php endforeach;?>