{{$pipeline->name}}
@if($pipeline->id == $task->pipeline_id)
Current
@endif
Todo list ({{ $pipeline->taskCheckItems->whereNotNull('completed_at')->count() }} / {{$pipeline->taskCheckItems->count()}})
{{-- @if(!$readOnly && iCan('create scrumboard task checkitem')) Add new task @endif --}} @if(!$readOnly && $pipeline->id == $task->pipeline_id)
@if(!$readOnly && iCan('create scrumboard task checkitem')) {{-- add new task --}} @endif @if($pipeline->taskCheckItems->count() > 0 && iCan('complete', [$pipeline->taskCheckItems[0]])) {{-- check all --}} {{-- uncheck all --}} {{-- hide completed --}} @endif {{-- move task to next pipeline --}} @if($nextBoardPipelineId && $pipeline->taskCheckItems->whereNull('completed_at')->count() == 0 && iCan('move', $task)) @elseif($pipeline->taskCheckItems->whereNull('completed_at')->count() == 0 && $pipeline->order == $pipeline->scrumBoard->pipelines->max('order')) @endif
@endif
@if($isCheckItemFormVisible && $editingCheckItem == null)
@error('checkItemTitle') {{ $message }} @enderror
@endif
taskCheckItems->count() == 0) data-init-empty="true" @endif wire:sortable="updateTaskPipelineCheckitemsOrder"> @php $filteredCheckItems = ($hideCompletedCheckItems ? $pipeline->taskCheckItems->whereNull('completed_at') : $pipeline->taskCheckItems)->filter(function ($item) use ($checkItemSearch) { return str_contains(strtolower($item->title), strtolower($checkItemSearch)); }); @endphp @forelse ($filteredCheckItems as $checkItem)
@if(!$readOnly && $editingCheckItem == $checkItem->id && $isCheckItemFormVisible) @error('checkItemTitle') {{ $message }} @enderror @else
completed_at) @disabled($readOnly || $task->pipeline_id != $pipeline->id) wire:change="toggleCheckItemStatus({{ $checkItem->id }})" wire:loading.attr="disabled">
  • @endif
    @if($checkItem->parent_id) {{-- Default --}} @endif
    @if(!$readOnly && $editingCheckItem == $checkItem->id && $isCheckItemFormVisible)
    @else @if($checkItem->completedBy)

    {{$checkItem->completed_at->diffForHumans()}}

    {{--

    --}}

    {{$checkItem->completedBy->name}}
    {{--

    --}}
    @endif
    @if(!$checkItem->parent_id) @php $canEdit = !$readOnly && auth()->user()->can('update', $checkItem); @endphp @else @endif @if(!$readOnly) @can('delete', $checkItem) @endcan @endif
    @endif
    @empty @endforelse