Да, можно получить доступ от frontend/web/uploads
к backend
представлению.
Сначала добавьте urlManagerFrontend
в backend->config->main.php
как
'components' => [
'urlManagerFrontend' => [
'class' => 'yii\web\urlManager',
'baseUrl' => 'frontend/web/', //Access frontend web url
],
],
И затем получите доступ к frontend/web/
backend
как
Yii::$app->urlManagerFrontend->baseUrl.'/uploads/your_image.jpg'
В DetailView :: виджет как
[
'attribute'=>'image',
'value'=> function ($model) {
return Html::img(Yii::$app->urlManagerFrontend->baseUrl.'/uploads/'.$model->image, ['alt' => 'No Image', 'width' => '10px', 'height' => '10px']);
},
'format' => 'raw',
],