| {{ $shift->started_at->setTimezone(config('app.display_timezone'))->format('d.m.Y') }} |
{{ $shift->user->name }} |
{{ $shift->started_at->setTimezone(config('app.display_timezone'))->format('H:i') }} |
@if ($shift->ended_at)
{{ $shift->ended_at->setTimezone(config('app.display_timezone'))->format('H:i') }}
@else
{{ __('workshift.status_active') }}
@endif
|
{{ $shift->jobs_count }} {{ trans_choice('workshift.jobs_label', $shift->jobs_count) }}
|
@if ($shift->ended_at)
{{ __('workshift.status_completed') }}
@else
{{ __('workshift.status_active') }}
@endif
|
@endforeach