common\models\GoodsImg::findByGoodsId PHP Method

findByGoodsId() public static method

public static findByGoodsId ( $goodsId )
    public static function findByGoodsId($goodsId)
    {
        return static::findAll(['goods_id' => $goodsId]);
    }

Usage Example

 public function actionImages($id)
 {
     return GoodsImg::findByGoodsId($id);
 }