Search code examples
yii2-advanced-app

display image in detail view with one to many reation yii2


I have two tables with one-to-many relation,

This code will display the path not image. how to display image?


Solution

  • Try this.

    [
        'attribute'=>'photo',
        'value'=>$model->photo,
        'format' => ['image',['width'=>'100','height'=>'100']],
     ],