mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-02 08:04:03 +01:00
19 lines
392 B
PHP
19 lines
392 B
PHP
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model app\models\ItemWidget */
|
|
|
|
use yii\helpers\Html;
|
|
|
|
$this->title = 'Добавить Item Widget';
|
|
$this->params['breadcrumbs'][] = ['label' => 'Item Widgets', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="item-widget-create">
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|