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