update.php
630 Bytes
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\BrandsReplace */
$this->title = 'Редактирование: ' . ' ' . $model->from_brand;
$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>