{{ $comeOut->id }} |
{{ $comeOut->first_name.' '.$comeOut->last_name }} |
schedule_name ?? 'class="text-danger"' !!}>{{ $comeOut->schedule_name ?? 'Не связано график работы' }} |
{{ $comeOut->company_name }} |
{{ $comeOut->branch_name }} |
{{ $comeOut->department_name }} |
{{ $comeOut->position_name }} |
{!! $comeOut->is_come === 1 ? 'Вход | ' : 'Выход | '!!}
@isset($comeOut->range_from)
@if($comeOut->is_come == 1)
@if($comeOut->range_from >= date("H:i", strtotime($comeOut->action_time)))
{{ $comeOut->action_time }} (ВО ВРЕМЯ) |
@elseif($comeOut->range_from < date("H:i", strtotime($comeOut->action_time)))
{{ $comeOut->action_time }} (ОПОЗДАНИЕ) |
@endif
@else
@if($comeOut->range_to > date("H:i", strtotime($comeOut->action_time)))
{{ $comeOut->action_time }} (Заранее) |
@elseif($comeOut->range_to <= date("H:i", strtotime($comeOut->action_time)))
{{ $comeOut->action_time }} (ВО ВРЕМЯ) |
@endif
@endif
@endisset
@empty