19 lines
495 B

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\ars\Attribute */
$this->title = '编辑 Attribute: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Attributes', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update ';
?>
<div class="attribute-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>