@forelse($items as $issue)
{{ strtoupper($issue->type) }}
@if($issue->assignee)
{{ $issue->assignee->name }}
@else
Brak
@endif
{{ $issue->priority }}
@if($issue->due_date)
Termin: {{ $issue->due_date->format('Y-m-d') }}
@endif
{{-- Zmiana statusu --}}
@empty
Brak zadań w tej kolumnie.
@endforelse
{{-- ✅ BLOKADA: w DONE nie dodajemy nowych --}}