@foreach($tasks as $task) @if($show_item_description) @endif @endforeach @if($tasks->count() == 0) @endif
{{ ctrans('texts.description') }} {{ ctrans('texts.project') }} {{ ctrans('texts.status') }} {{ ctrans('texts.duration') }}
{{ \Illuminate\Support\Str::limit($task->description, 80) }} {{ $task->project?->name }}
{!! $task->stringStatus() !!} @if($task->invoice_id && ($task->invoice->status_id != \App\Models\Invoice::STATUS_DRAFT || $task->invoice->status_id != \App\Models\Invoice::STATUS_CANCELLED || !$task->invoice->is_deleted)) @endif
{{ \Carbon\CarbonInterval::seconds($task->calcDuration())->cascade()->forHumans() }}
@foreach($task->processLogsExpandedNotation() as $log) @if(strlen($log['description']) > 1) @endif @endforeach
{{ ctrans('texts.date') }} {{ ctrans('texts.duration') }} {{ ctrans('texts.description') }}
{{ $log['start_date']}} {{ $log['duration']}} {!! nl2br(e($log['description'])) !!}
{{ ctrans('texts.no_results') }}
@if($tasks->total() > 0) @endif {{ $tasks->links('portal/ninja2020/vendor/pagination') }}