Good day to all! Tell me what could be the problem?
Hooked up the costa-rico / yii2-images widget. Everything works: the photo loads, deletes, but does not display images in the view. Yii does not show errors. The html code of the images is inserted into the browser, but the browser gives a 404 error.
View code:
<?php use yii\helpers\Html; use yii\widgets\DetailView; $images = $model->getImages(); $data = ''; foreach ($images as $image) { $data .= Html::img($image->getUrl(), ['alt' => 'objphoto']); } ?> <?= DetailView::widget([ 'model' => $model, 'attributes' => [ ........ [ 'attribute' => 'images', 'format' => 'html', 'value' => $data, ], ....... ], ]) ?> 