@props([ 'tasks' => [], 'users' => [], 'className' => '' ]) @php $columns = [ [ 'id' => 'todo', 'title' => 'To Do', 'color' => 'bg-body border-light shadow-sm', 'tasks' => $tasks['todo'] ?? [] ], [ 'id' => 'inprogress', 'title' => 'In Progress', 'color' => 'bg-body border-primary shadow-sm', 'tasks' => $tasks['inprogress'] ?? [] ], [ 'id' => 'review', 'title' => 'Review', 'color' => 'bg-body border-warning shadow-sm', 'tasks' => $tasks['review'] ?? [] ], [ 'id' => 'done', 'title' => 'Done', 'color' => 'bg-body border-success shadow-sm', 'tasks' => $tasks['done'] ?? [] ] ]; $priorityColors = [ 'low' => 'bg-success text-white', 'medium' => 'bg-warning text-dark', 'high' => 'bg-danger text-white', 'urgent' => 'bg-dark text-white' ]; $priorityIcons = [ 'low' => 'bx-flag', 'medium' => 'bx-flag', 'high' => 'bx-flag', 'urgent' => 'bx-flag' ]; @endphp