guild/backend/modules/company/views/company/create.php
2019-06-21 18:05:58 +03:00

21 lines
414 B
PHP
Executable File

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\company\models\Company */
$this->title = 'Создать компанию';
$this->params['breadcrumbs'][] = ['label' => 'Компании', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="company-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>