'attribute' => 'work_time',
],
[
- 'label' => 'Дата смены',
+ 'label' => 'Дата смены',
'attribute' => 'date_shift',
'format' => ['date', 'php:d.m.Y'],
],
'label' => 'Отметка о начале',
'format' => 'raw',
'value' => function ($model) {
- return !empty($photo = $model->checkinStart->photo) ? Html::img($photo, ['alt' => 'selfie', 'height' => '100px']) : null;
+ if (!empty($model->checkin_start_id)) {
+ return !empty($photo = $model->checkinStart->photo) ? Html::img($photo, ['alt' => 'selfie', 'height' => '100px']) : null;
+ };
},
],
[
'label' => 'Отметка о конце',
'format' => 'raw',
'value' => function ($model) {
- return !empty($photo = $model->checkinEnd->photo) ? Html::img($photo, ['alt' => 'selfie', 'height' => '100px']) : null;
+ if (!empty($model->checkin_end_id)) {
+ return !empty($photo = $model->checkinStart->photo) ? Html::img($photo, ['alt' => 'selfie', 'height' => '100px']) : null;
+ };
},
],
[