I have a table named Play and I'm showing details of each record in Yii2 detail view widget. I have an attribute in that table recurring
which is of type tinyint, it can be 0 or 1. But I don't want to view it as a number, instead i want to display yes
or no
based on the value (0 or 1).
I'm trying to change that with a function in detailview widget but I'm getting an error: Object of class Closure could not be converted to string
My detail view code:
<?= DetailView::widget([
'model' => $model,
'attributes' => [
'name',
'max_people_count',
'type',
[
'attribute' => 'recurring',
'format'=>'raw',
'value'=> function ($model) {
if($model->recurring == 1)
{
return 'yes';
}
else {
return 'no';
}
},
],
'day',
'time',
...
Any help would be appreciated !