Files
Alex Solomaha c021d959dd Refactor
2016-10-21 16:03:14 +03:00

19 lines
374 B
PHP

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