add employee module
This commit is contained in:
16
backend/modules/employee/views/manager/create.php
Normal file
16
backend/modules/employee/views/manager/create.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model backend\modules\employee\models\Manager */
|
||||
|
||||
$this->title = 'Назначить менеджера';
|
||||
$this->params['breadcrumbs'][] = ['label' => 'Managers', 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="manager-create">
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user