Your IP : 216.73.216.79


Current Path : /var/www/html/hr/views/leaveapplication/
Upload File :
Current File : /var/www/html/hr/views/leaveapplication/update.php

<?php

use yii\helpers\Html;

/* @var $this yii\web\View */
/* @var $model app\models\LeaveApplication */

$this->title = 'Update Leave Application: ' . $model->id;
$this->params['breadcrumbs'][] = ['label' => 'Leave Applications', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id, 'uuid' => $model->uuid]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="leave-application-update">

    <h1><?= Html::encode($this->title) ?></h1>

    <?= $this->render('_form', [
        'model' => $model,
    ]) ?>

</div>