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