You don't have permission to comment on this card.
@endif
@foreach($board->lists as $boardList)
{{ $boardList->name }}
@endforeach
Labels
Labels
@php
// Get current label IDs - labels are stored as array of IDs
$currentLabelIds = $card->labels ?? [];
// Ensure it's an array
if (!is_array($currentLabelIds)) {
$currentLabelIds = [];
}
@endphp
@foreach($boardLabels as $label)