<?php use yii\bootstrap4\Html; use yii\bootstrap4\ActiveForm; use kartik\tabs\TabsX; /* @var $this yii\web\View */ /* @var $model backend\modules\shop\models\ars\ExpressTemplate */ $this->title = '创建运费模板'; $this->params['breadcrumbs'][] = ['label' => '运费模板', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; Yii::$app->params['bsVersion'] = '4.x'; ?> <div class="express-template-create"> <?= $this->render('_form', [ 'model' => $model, 'isCreate' => true ]) ?> </div>