<?= GridView::widget([
'filterUrl' => Url::toRoute('index'),
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
[
'attribute'=> 'body',
'format'=> 'text'],
],
]); ?>
[
'attribute'=> 'body',
'value' => function($model){return strip_tags($model->body);},
],
public function getPureBody(){
return strip_tags($this->body); //тут же можно добавить обрезку по длинный, если это длинный текст
}
'columns' => [
[
'attribute'=> 'body',
'value' => 'pureBody'},
],
]
'columns' => [
'pureBody'
]