| Current Path : /var/www/html/kpwkm/backend/modules/api/views/api/ |
| Current File : /var/www/html/kpwkm/backend/modules/api/views/api/view.php |
<?php
use yii\helpers\Html;
use yii\widgets\DetailView;
/* @var $this yii\web\View */
/* @var $model backend\modules\api\models\Api */
$this->title = $model->api_id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Apis'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
\yii\web\YiiAsset::register($this);
?>
<div class="api-view">
<h1><?= Html::encode($this->title) ?></h1>
<p>
<?= Html::a(Yii::t('app', 'Update'), ['update', 'id' => $model->api_id], ['class' => 'btn btn-primary']) ?>
<?= Html::a(Yii::t('app', 'Delete'), ['delete', 'id' => $model->api_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' => [
'api_id',
'api_code',
'api_descr:ntext',
'api_content:ntext',
'created_at',
'created_by',
'updated_at',
'updated_dt',
],
]) ?>
</div>