| Current Path : /var/www/html/ebook/backend/views/frontend/frontend-content-history/ |
| Current File : /var/www/html/ebook/backend/views/frontend/frontend-content-history/view.php |
<?php
use yii\helpers\Html;
use yii\widgets\DetailView;
/* @var $this yii\web\View */
/* @var $model backend\models\frontendcontenthistory\FrontendContentHistory */
$this->title = $model->content_history_id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Frontend Content Histories'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="frontend-content-history-view">
<h1><?= Html::encode($this->title) ?></h1>
<p>
<?= Html::a(Yii::t('app', 'Update'), ['update', 'id' => $model->content_history_id], ['class' => 'btn btn-primary']) ?>
<?= Html::a(Yii::t('app', 'Delete'), ['delete', 'id' => $model->content_history_id], [
'class' => 'btn btn-danger',
'data' => [
'confirm' => Yii::t('app', 'Are you sure you want to delete this item?'),
'method' => 'post',
],
]) ?>
</p>
<?= DetailView::widget([
'model' => $model,
'attributes' => [
'content_history_id',
'history_content_id',
'history_content_title',
'history_content:ntext',
'history_page_id',
'history_category_id',
'created_at',
'created_by',
],
]) ?>
</div>