view.php 1009 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\DetailView;
  4. /* @var $this yii\web\View */
  5. /* @var $model app\models\DocumentsToTheUser */
  6. $this->title = $model->title;
  7. $this->params['breadcrumbs'][] = ['label' => 'Documents To The Users', 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="documents-to-the-user-view">
  11. <p>
  12. <?= Html::a('Main', ['index'], ['class' => 'btn btn-info']) ?>
  13. <?= Html::a('Update', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
  14. <?= Html::a('Delete', ['delete', 'id' => $model->id], [
  15. 'class' => 'btn btn-danger',
  16. 'data' => [
  17. 'confirm' => 'Are you sure you want to delete this item?',
  18. 'method' => 'post',
  19. ],
  20. ]) ?>
  21. </p>
  22. <?= DetailView::widget([
  23. 'model' => $model,
  24. 'attributes' => [
  25. 'id',
  26. 'menu.menu_name',
  27. 'title',
  28. 'path',
  29. ],
  30. ]) ?>
  31. </div>