| Current Path : /var/www/html/crowdfunding.backup/backend/views/alert/ |
| Current File : /var/www/html/crowdfunding.backup/backend/views/alert/update.php |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model app\models\Alert */
$this->title = yii::t('app','Update Alert: ') . $model->id;
$this->params['breadcrumbs'][] = ['label' => yii::t('app','Alert'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="alert-update">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>