| 123456789101112131415161718192021222324 |
- <?php
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model app\models\Category */
- $this->title = Yii::t('app', 'Create Category');
- $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Categories'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="panel panel-primary">
- <div class="panel-heading"><span class="glyphicon glyphicon-list"></span><strong> <?= Html::encode($this->title) ?></strong></div>
- <div class="panel-body">
- <div class="category-create">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
- </div>
- </div>
|