echo GridView::widget([
'dataProvider' => new ArrayDataProvider([
'allModels' => $user['photos']['items'],
'pagination' => [
'pageSize' => 5,
],
]),
'columns' => [
[
'attribute' => 'photos',
'label' => 'фото',
'format' => 'html',
'value' => function ($model) {
return @Html::img($model['photo_604'], ['class' => 'request-view-img']);
}
]
]
]);