18 lines
395 B

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\goods\models\ars\Attribute */
$this->title = '创建规格';
$this->params['breadcrumbs'][] = ['label' => '规格管理', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="attribute-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>