ubn5/backend/modules/cms/views/line-notify/update.php

29 lines
720 B
PHP

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\LineNotify */
$this->title = 'Update Line Notify: ' . $model->id;
$this->params['breadcrumbs'][] = ['label' => 'Line Notifies', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="content-box">
<h3 class="content-box-header bg-primary">
<i class="glyph-icon icon-users"></i>
<?= $this->title ?>
<div class="header-buttons">
</div>
</h3>
<div class="content-box-wrapper">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>
</div>