@include('scrumboard::livewire.show.toolbar', ['scrum_board' => $scrum_board])
@if ($view == 'board')
{{-- wire:sortable-group="updateTaskOrder" --}} @forelse ($pipelines as $pipeline) {{-- --}} @empty @endforelse
@elseif ($view == 'table')
@forelse ($this->tasks as $task) {{-- task --}} {{-- project --}} {{-- pipeline --}} {{-- check items --}} {{-- priority --}} {{-- tags --}} {{-- last activity --}} {{-- status --}} @empty @endforelse
Task Project Pipeline Check Items Priority Tags Last Activity Status
{{ $task->project_code }} {{ $task->projectable->name ?? $task->projectable->subject ?? $task->projectable->reference_number ?? $task->projectable->job_name ?? '-' }} {{ $task->pipeline->name }}{{ $task->completed_check_items_count . '/' .$task->checkitems_count}} {{$task::PRIORITIES[$task->priority]}} @forelse($task->tagsTranslated('en')->get()->pluck('name_translated') as $tag) {{ $tag }} @empty @endforelse {{ $task->updated_at->diffForHumans() }}@include('scrumboard::scrum-boards.status-column', ['task' => $task])
No tasks found
@if ($this->tasks->hasPages()) {{ $this->tasks->links() }} @endif
@endif
@push('scripts') {{-- --}} @endpush