| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model app\models\DocumentsToTheUser */
- $this->title = $model->title;
- $this->params['breadcrumbs'][] = ['label' => 'Documents To The Users', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="documents-to-the-user-view">
- <p>
- <?= Html::a('Main', ['index'], ['class' => 'btn btn-info']) ?>
- <?= Html::a('Update', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
- <?= Html::a('Delete', ['delete', 'id' => $model->id], [
- 'class' => 'btn btn-danger',
- 'data' => [
- 'confirm' => 'Are you sure you want to delete this item?',
- 'method' => 'post',
- ],
- ]) ?>
- </p>
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'menu.menu_name',
- 'title',
- 'path',
- ],
- ]) ?>
- </div>
|