mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-25 22:01:21 +01:00
20 lines
508 B
PHP
20 lines
508 B
PHP
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model app\models\Room */
|
|
|
|
use yii\helpers\Html;
|
|
|
|
$this->title = 'Изменить Room: ' . $model->name;
|
|
$this->params['breadcrumbs'][] = ['label' => 'Комнаты', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
|
|
$this->params['breadcrumbs'][] = 'Редактирование';
|
|
?>
|
|
<div class="room-update">
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|