Exemplo n.º 1
0
	    <?php 
echo $form->field($model, 'customer_phone')->textInput(['maxlength' => 255]);
?>

	    <?php 
echo $form->field($model, 'customer_email')->textInput(['maxlength' => 255]);
?>
    </fieldset>

    <?php 
echo $form->field($model, 'title', ['options' => ['maxlength' => 255], 'addon' => ['prepend' => ['content' => '<i class="glyphicon glyphicon-star"></i>']]]);
?>

    <?php 
echo $form->field($model, 'type')->dropDownList(Ticket::typeOptions());
?>

    <?php 
echo $form->field($model, 'system')->textInput(['maxlength' => 255]);
?>

    <?php 
echo $form->field($model, 'priority')->radioList(Ticket::priorityOptions());
?>

    <?php 
echo $form->field($model, 'status')->dropDownList(Ticket::statusOptions());
?>

    <?php