| {{ trans('texts.client') }} | 
    @if ($multiUser)
        {{ trans('texts.user') }} | 
    @endif
    {{ trans('texts.start_date') }} | 
    {{ trans('texts.duration') }} | 
    {{ trans('texts.description') }} | 
@foreach ($tasks as $task)
    @if (!$task->client || !$task->client->is_deleted)
        
            | {{ $task->present()->client }} | 
            @if ($multiUser)
                {{ $task->present()->user }} | 
            @endif
            {{ $task->getStartTime() }} | 
            {{ $task->getDuration() }} | 
            {{ $task->description }} | 
        
    @endif
@endforeach