backend/views/setting/update.php
<?php
/**
* @link http://www.writesdown.com/
* @author Agiel K. Saputra <13nightevil@gmail.com>
* @copyright Copyright (c) 2015 WritesDown
* @license http://www.writesdown.com/license/
*/
/* @var $this yii\web\View */
/* @var $model common\models\Option */
$this->title = Yii::t('writesdown', 'Update Setting: {name}', ['name' => $model->name]);
$this->params['breadcrumbs'][] = ['label' => Yii::t('writesdown', 'Setting'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = Yii::t('writesdown', 'Update');
?>
<div class="option-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>