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(10mo ago)011MITPHPPHP &gt;=8.2

Since Sep 22Pushed 10mo 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 1w ago

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

32

—

LowBetter than 69% of packages

Maintenance53

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

329d 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.

3932.5M4.3k](/packages/filament-filament)[filament/tables

Easily add beautiful tables to any Livewire component.

3733.5M188](/packages/filament-tables)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.4M354](/packages/psalm-plugin-laravel)[filament/actions

Easily add beautiful action modals to any Livewire component.

1330.7M102](/packages/filament-actions)[relaticle/flowforge

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

415139.6k11](/packages/relaticle-flowforge)[api-platform/laravel

API Platform support for Laravel

58190.1k21](/packages/api-platform-laravel)

PHPackages © 2026

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