kokjan/frontend/views/forum/_category.php

39 lines
1.3 KiB
PHP
Executable File

<?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">
<h4 class="card-title"><?= Html::a($model->name, ['index', 'id' => $model->id]) ?></h4>
<?= $model->description ?>
<p>
<?= Html::a('<span class="fa fa-pencil"></span> ตั้งกระทู้ใหม่', ['create', 'id' => $model->id], ['class' => 'btn btn-success']) ?>
</p>
<?= GridView::widget([
'dataProvider' => new ActiveDataProvider([
'query' => ForumThread::find()->where(['forum_category_id' => $model->id,]),
'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>