Commit 69377138 authored by Shakarim Sapa's avatar Shakarim Sapa

- Show the send status

parent a3f44f65
......@@ -16,6 +16,12 @@ use yii\grid\GridView;
'id',
'email',
[
'attribute' => 'sent',
'value' => function($model) {
return ($model->sent==1) ? 'Отправлено' : 'Не отправлено';
}
],
[
'attribute' => 'post_id',
'value' => function($model) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment