@if(count($selectedTodos) > 0) Bulk Actions ({{ count($selectedTodos) }}) Mark In Progress Mark Ported Mark Skipped Mark Won't Port @endif Reset Filters Back
{{-- Status Tabs --}}
Pending {{ $this->todoStats['pending'] }} Quick Wins {{ $this->todoStats['quick_wins'] }} In Progress {{ $this->todoStats['in_progress'] }} Completed {{ $this->todoStats['completed'] }}
{{-- Filters --}}
@foreach($this->vendors as $vendor) @endforeach
Todo Vendor Type Priority Effort Status Actions @forelse ($this->todos as $todo)
{{ $todo->title }} @if($todo->isQuickWin()) Quick Win @endif @if($todo->has_conflicts) @endif
@if($todo->description)
{{ Str::limit($todo->description, 80) }}
@endif @if($todo->files && count($todo->files) > 0)
{{ count($todo->files) }} file(s)
@endif
{{ $todo->vendor->name }} {{ $todo->getTypeIcon() }} {{ ucfirst($todo->type) }} {{ $todo->getPriorityLabel() }} ({{ $todo->priority }}) {{ $todo->getEffortLabel() }} {{ ucfirst(str_replace('_', ' ', $todo->status)) }} @if($todo->isPending()) Start Progress Mark Ported Skip Won't Port @elseif($todo->status === 'in_progress') Mark Ported Skip @endif @if($todo->github_issue_number) View GitHub Issue @endif
@empty
No todos found Try adjusting your filters
@endforelse
@if($this->todos->hasPages())
{{ $this->todos->links() }}
@endif