12345678910111213141516171819 |
- <?php
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model common\models\WechatUser */
- $this->title = Yii::t('common', 'Create Wechat User');
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Wechat Users'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="wechat-user-create">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|