guild/backend/modules/employee/views/manager-employee/update.php
2021-11-16 13:14:28 +03:00

20 lines
553 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\employee\models\ManagerEmployee */
$this->title = 'Изменить сотрудника у менеджера:';
$this->params['breadcrumbs'][] = ['label' => 'Manager Employees', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="manager-employee-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>