0084d336
Administrator
Importers CRUD
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model common\models\Cat */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="cat-form">
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'description')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'sort')->textInput() ?>
<?= $form->field($model, 'is_active')->textInput() ?>
<?= $form->field($model, 'parent_id')->textInput() ?>
<div class="form-group">
|