39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use common\models\ForumThread;
|
||
|
|
use yii\data\ActiveDataProvider;
|
||
|
|
use yii\grid\GridView;
|
||
|
|
use yii\helpers\Html; ?>
|
||
|
|
<div class="card shadow" style="border: none;">
|
||
|
|
<div class="card-body">
|
||
|
|
<strong class="card-title" style="font-size: 26px"><?= Html::a($model->name, ['index', 'id' => $model->id]) ?></strong><br />
|
||
|
|
<?= $model->description ?><br />
|
||
|
|
|
||
|
|
<p>
|
||
|
|
<?= Html::a('<span class="fa fa-pen" style="font-size: 12px; margin-top: 6px; color: white;"></span> ตั้งกระทู้ใหม่', ['create', 'id' => $model->id], ['class' => 'btn btn-success', 'style' => 'color:white']) ?>
|
||
|
|
</p>
|
||
|
|
<?= GridView::widget([
|
||
|
|
'dataProvider' => new ActiveDataProvider([
|
||
|
|
'query' => ForumThread::find()->where(['forum_category_id' => $model->id, /*'status' => 1*/]),
|
||
|
|
'sort' => [
|
||
|
|
'defaultOrder' => [
|
||
|
|
'id' => SORT_DESC
|
||
|
|
]
|
||
|
|
]
|
||
|
|
]),
|
||
|
|
'columns' => [
|
||
|
|
['class' => 'yii\grid\SerialColumn'],
|
||
|
|
[
|
||
|
|
'attribute' => 'name',
|
||
|
|
'format' => 'raw',
|
||
|
|
'value' => function ($model) {
|
||
|
|
return Html::a($model->name, ['view', 'id' => $model->id]);
|
||
|
|
}
|
||
|
|
],
|
||
|
|
//'thread_by',
|
||
|
|
'created_at:datetime'
|
||
|
|
|
||
|
|
]
|
||
|
|
]) ?>
|
||
|
|
</div>
|
||
|
|
</div>
|