guild/backend/modules/company/views/company-manager/create.php

19 lines
461 B
PHP
Raw Normal View History

2022-12-01 14:11:29 +03:00
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\company\models\CompanyManager */
$this->title = 'Добавить нового менеджера компании';
$this->params['breadcrumbs'][] = ['label' => 'Company Managers', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="company-manager-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>