Your IP : 216.73.216.79


Current Path : /var/www/html/zakatselangor/backend/views/audit-trail-entry/
Upload File :
Current File : /var/www/html/zakatselangor/backend/views/audit-trail-entry/update.php

<?php

use yii\helpers\Html;

/* @var $this yii\web\View */
/* @var $model backend\models\AuditTrailEntry */

$this->title = Yii::t('app', 'Update Audit Trail Entry: {nameAttribute}', [
    'nameAttribute' => $model->id,
]);
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Audit Trail Entries'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = Yii::t('app', 'Update');
?>
<div class="audit-trail-entry-update">

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

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

</div>