PHPackages                             tima/filament-column-order - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. tima/filament-column-order

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

tima/filament-column-order
==========================

Reusable Filament widget for saving/reordering table columns

1.0.10(9mo ago)011MITPHPPHP &gt;=8.2

Since Sep 22Pushed 9mo agoCompare

[ Source](https://github.com/Timur0021/filament-column-order)[ Packagist](https://packagist.org/packages/tima/filament-column-order)[ RSS](/packages/tima-filament-column-order/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (8)Versions (12)Used By (0)

Filament Column Order Widget
============================

[](#filament-column-order-widget)

Пакет для Filament, який дозволяє змінювати порядок колонок у таблицях через drag &amp; drop та зберігати його у базі даних.

---

Встановлення
------------

[](#встановлення)

1. Встановити пакет:

```
composer require tima/filament-column-order

2.Опублікувати ресурси та міграції:

php artisan vendor:publish --tag=filament-column-order-views
php artisan vendor:publish --tag=filament-column-order-migrations
php artisan migrate

Використання
1. Додати віджет у Resource:

use Tima\FilamentColumnOrder\Widgets\ColumnsOrderWidget;

protected function getHeaderWidgets(): array
{
    return [
        ColumnsOrderWidget::make([
            'labels' => [
                'id' => 'ID',
                'title' => 'Назва',
                'active' => 'Статус',
            ],
            'key' => 'products_table_columns',
        ]),
    ];
}
Це створить drag & drop віджет для сортування колонок.

2. Використовувати порядок колонок у Table

use Tima\FilamentColumnOrder\Widgets\ColumnsOrderWidget;
use Filament\Tables\Columns\TextColumn;
use Archilex\ToggleIconColumn\Columns\ToggleIconColumn;

$allColumns = [
    'id' => TextColumn::make('id')->label('ID')->sortable()->searchable(),
    'title' => TextColumn::make('title')->label('Назва'),
    'active' => ToggleIconColumn::make('active')->label('Статус'),
];

$order = ColumnsOrderWidget::getOrder('products_table_columns', array_keys($allColumns));

$table->columns(ColumnsOrderWidget::sortColumns($order, $allColumns));

3. Drag & Drop

Віджет автоматично підключає SortableJS
 і дозволяє змінювати порядок колонок. Порядок зберігається у таблиці setting_columns.
```

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance57

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

11

Last Release

283d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/959256?v=4)[Alexander Schultz](/maintainers/tamerlan)[@tamerlan](https://github.com/tamerlan)

---

Top Contributors

[![Timur0021](https://avatars.githubusercontent.com/u/121176790?v=4)](https://github.com/Timur0021 "Timur0021 (1 commits)")

### Embed Badge

![Health badge](/badges/tima-filament-column-order/health.svg)

```
[![Health](https://phpackages.com/badges/tima-filament-column-order/health.svg)](https://phpackages.com/packages/tima-filament-column-order)
```

###  Alternatives

[filament/filament

A collection of full-stack components for accelerated Laravel app development.

3829.6M3.6k](/packages/filament-filament)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[filament/tables

Easily add beautiful tables to any Livewire component.

3730.5M151](/packages/filament-tables)[filament/actions

Easily add beautiful action modals to any Livewire component.

1327.7M75](/packages/filament-actions)[relaticle/flowforge

Flowforge is a lightweight Kanban board package for Filament that works with existing Eloquent models.

413106.5k5](/packages/relaticle-flowforge)[filament/infolists

Easily add beautiful read-only infolists to any Livewire component.

1327.7M64](/packages/filament-infolists)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
