{{-- Project Selector --}} @if(!$selectedProject)

Select Project

Choose a project to view its board

{{-- Search Bar --}}
@if($searchProject) @endif
@if($projects->isEmpty())

No Projects Available

You don't have access to any projects yet.

@elseif($this->filteredProjects->isEmpty())

No Projects Found

Try adjusting your search terms

@else
@foreach($this->filteredProjects as $project) @endforeach
@endif
@else {{-- Project Switcher --}}
{{-- Dropdown Menu --}}
@endif @if($selectedProject)
{{-- Mobile swipe hint --}}
Swipe horizontally to view all columns
{{-- View Only Mode Indicator --}} @if(!$this->canMoveTickets())
View Only Mode You can view tickets but cannot move them
@endif
@foreach ($this->ticketStatuses as $status)

{{ $status->name }} {{ $status->tickets->count() }} @if($status->is_completed)
@endif

@foreach ($status->tickets as $index => $ticket)
{{ $ticket->uuid }}
@if ($ticket->priority) {{ $ticket->priority->name }} @endif @if ($ticket->due_date) {{ $ticket->due_date->format('M d') }} @endif

{{ $ticket->name }}

@if ($ticket->description)

{{ \Illuminate\Support\Str::limit(strip_tags($ticket->description), 100) }}

@endif
@if ($ticket->assignees->isNotEmpty())
@foreach($ticket->assignees->take(2) as $assignee)
{{ substr($assignee->name, 0, 1) }} {{ \Illuminate\Support\Str::limit($assignee->name, 8) }}
@endforeach @if($ticket->assignees->count() > 2)
+{{ $ticket->assignees->count() - 2 }}
@endif
@else
Unassigned
@endif
@endforeach @if ($status->tickets->isEmpty())
No tickets
@else
Loading more tickets...
@endif
@endforeach @if ($this->ticketStatuses->isEmpty())
No status columns found for this project
@endif
@endif