| 1234567891011121314151617181920 |
- <?php
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model app\models\DocumentsToTheUser */
- $this->title = 'Update Documents To The User: ' . $model->title;
- $this->params['breadcrumbs'][] = ['label' => 'Documents To The Users', 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
- $this->params['breadcrumbs'][] = 'Update';
- ?>
- <div class="documents-to-the-user-update">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|