update.php 535 B

1234567891011121314151617181920
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model app\models\DocumentsToTheUser */
  5. $this->title = 'Update Documents To The User: ' . $model->title;
  6. $this->params['breadcrumbs'][] = ['label' => 'Documents To The Users', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
  8. $this->params['breadcrumbs'][] = 'Update';
  9. ?>
  10. <div class="documents-to-the-user-update">
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. ]) ?>
  14. </div>