Vaksel

Вьюшка прокладка

Dec 4th, 2021
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php
  2.  
  3. use yii\helpers\Html;
  4.  
  5. /* @var $this yii\web\View */
  6. /* @var $model common\models\OrdersVezd */
  7.  
  8. $this->title = 'Обновить заказ: ' . $model->id;
  9. $this->params['breadcrumbs'][] = ['label' => 'Заказы', 'url' => ['abroad']];
  10. //$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
  11. $this->params['breadcrumbs'][] = 'Обновить';
  12. ?>
  13. <div class="orders-update">
  14.  
  15. <h1><?= Html::encode($this->title) ?></h1>
  16.  
  17. <?= $this->render('_form-vezd', [
  18. 'model' => $model,
  19. 'dataProviderMessages' => $dataProviderMessages,
  20. 'dataProviderStatuses' => $dataProviderStatuses,
  21. ]) ?>
  22.  
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment