title = Yii::t('app', 'Персонал'); $this->params[ 'breadcrumbs' ][] = $this->title; ?>
= Html::a(Yii::t('app', 'Добавить сотрудника'), [ 'create' ], [ 'class' => 'btn btn-success' ]) ?>
= GridView::widget( [ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ [ 'class' => 'yii\grid\SerialColumn' ], 'lang.title', [ 'attribute' => 'image_id', 'value' => function (Persone $model) { if (!empty($model->image)) { return Html::img( $model->image->getUrl(), [ 'width' => '500px', ] ); } else { return ''; } }, 'format' => 'html', ], [ 'class' => 'yii\grid\ActionColumn' ], ], ] ); ?>