Files
2016-12-08 21:52:54 +02:00

19 lines
386 B
PHP

<?php
/* @var $this yii\web\View */
/* @var $model app\models\Item */
use yii\helpers\Html;
$this->title = 'Добавить Элемент';
$this->params['breadcrumbs'][] = ['label' => 'Элементы', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="item-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>