title = 'Менеджер: ' . $manager . ', ' . 'сотрудник: ' . $employee; $this->params['breadcrumbs'][] = ['label' => 'Manager Employees', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; YiiAsset::register($this); ?>
= Html::a('Список', ['index', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> = Html::a('Изменить', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> = Html::a('Удалить', ['delete', 'id' => $model->id], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => 'Are you sure you want to delete this item?', 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id', [ 'attribute' => 'manager_id', 'value' => ArrayHelper::getValue($model,'manager.user.username'), ], [ 'attribute' => 'employee_id', 'value' => ArrayHelper::getValue($model,'user.username'), ], ], ]) ?>