guild/backend/modules/holiday/views/holiday/update.php
2019-12-10 17:22:20 +03:00

15 lines
452 B
PHP
Executable File

<?php
$this->title = 'Редактировать отпуск №' . $model->id;
$this->params['breadcrumbs'][] = ['label' => 'Список отпусков', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Редактировать';
?>
<div class="holiday-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>