@lang('lang_v1.profile_tab_attendance')

@if($profile['attendance_url']) @lang('messages.view') @lang('lang_v1.all') @endif
@if($profile['attendance_rows']->isEmpty())

@lang('lang_v1.profile_not_enough_data')

@else
@foreach($profile['attendance_rows'] as $row) @endforeach
@lang('essentials::lang.clock_in') @lang('essentials::lang.clock_out') @lang('lang_v1.holding_status')
{{ $row->clock_in_time ? format_datetime($row->clock_in_time) : '—' }} {{ $row->clock_out_time ? format_datetime($row->clock_out_time) : '—' }} {{ $row->clock_out_time ? __('lang_v1.holding_status_active') : __('essentials::lang.in_progress') }}
@endif