Blame view

backend/views/brands-replace/update.php 630 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
  <?php
  
  use yii\helpers\Html;
  
  /* @var $this yii\web\View */
  /* @var $model common\models\BrandsReplace */
  
83aa6595   Mihail   edit brand-replac...
8
  $this->title = 'Редактирование: ' . ' ' . $model->from_brand;
0084d336   Administrator   Importers CRUD
9
10
11
12
13
14
15
16
17
18
19
20
21
  $this->params['breadcrumbs'][] = ['label' => 'Brands Replaces', 'url' => ['index']];
  $this->params['breadcrumbs'][] = ['label' => $model->from_brand, 'url' => ['view', 'from_brand' => $model->from_brand, 'to_brand' => $model->to_brand]];
  $this->params['breadcrumbs'][] = 'Update';
  ?>
  <div class="brands-replace-update">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  
  </div>