49 lines
1.6 KiB
PHP
49 lines
1.6 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\DetailView;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\LineNotify */
|
|
|
|
$this->title = $model->id;
|
|
$this->params['breadcrumbs'][] = ['label' => 'รายการแจ้งเตือน', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
\yii\web\YiiAsset::register($this);
|
|
?>
|
|
<div class="content-box">
|
|
<h3 class="content-box-header bg-primary">
|
|
<i class="glyph-icon icon-users"></i>
|
|
<?= $this->title ?>
|
|
|
|
<div class="header-buttons">
|
|
<?php //= Html::a('Update', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
|
|
<?= Html::a('ลบรายการนี้', ['delete', 'id' => $model->id], [
|
|
'class' => 'btn btn-danger btn-sm no-border',
|
|
'data' => [
|
|
'confirm' => 'คุณแน่ใจนะว่าต้องการลบรายการนี้?',
|
|
'method' => 'post',
|
|
],
|
|
]) ?>
|
|
</div>
|
|
</h3>
|
|
<div class="content-box-wrapper">
|
|
|
|
|
|
<?= DetailView::widget([
|
|
'model' => $model,
|
|
'attributes' => [
|
|
//'id',
|
|
'message',
|
|
'created_at:datetime',
|
|
//'updated_at',
|
|
[
|
|
'attribute' => 'created_by',
|
|
'value' => (isset($model->createdBy) ? $model->createdBy->person->getFullname() : null)
|
|
],
|
|
//'updated_by',
|
|
],
|
|
]) ?>
|
|
</div>
|
|
</div>
|