Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions resources/views/livewire/column.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ class="flowforge-column w-[300px] min-w-[300px] flex-shrink-0 border border-gray
<!-- Column Header -->
<div class="flowforge-column-header flex items-center justify-between py-3 px-4 border-b border-gray-200 dark:border-gray-700">
<div class="flex items-center">
@if ($column['icon'] ?? null)
<x-filament::icon :icon="$column['icon']" class="h-4 w-4 text-gray-500 dark:text-gray-400 me-2" />
@endif
<h3 class="text-sm font-medium text-gray-700 dark:text-gray-200">
{{ $column['label'] }}
</h3>
Expand Down
1 change: 1 addition & 0 deletions src/Board.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public function getViewData(): array
'id' => $columnId,
'label' => $column->getLabel(),
'color' => $column->getColor(),
'icon' => $column->getIcon(),
'items' => $formattedRecords,
'total' => $this->getBoardRecordCount($columnId),
];
Expand Down