PHPackages                             alonadashko/filament-table-vertical-scroll - 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. alonadashko/filament-table-vertical-scroll

ActiveLibrary

alonadashko/filament-table-vertical-scroll
==========================================

Filament plugin that makes tables vertically scrollable with a sticky header row via -&gt;verticalScrollable().

v1.0.1(today)04↑2900%MITPHPPHP ^8.1

Since Aug 24Pushed todayCompare

[ Source](https://github.com/Alena009/filament-table-vertical-scroll)[ Packagist](https://packagist.org/packages/alonadashko/filament-table-vertical-scroll)[ RSS](/packages/alonadashko-filament-table-vertical-scroll/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (2)Versions (3)Used By (0)

Filament Table Vertical Scroll
==============================

[](#filament-table-vertical-scroll)

A [Filament](https://filamentphp.com) plugin that makes tables vertically scrollable: the **header row (`thead`) stays fixed** while only the table body scrolls.

Installation
------------

[](#installation)

Add a path repository to your app's `composer.json` (for local development):

```
{
    "repositories": [
        {
            "type": "path",
            "url": "../filament-table-vertical-scroll",
            "options": {
                "symlink": true
            }
        }
    ]
}
```

Then require the package:

```
composer require alonadashko/filament-table-vertical-scroll:@dev
php artisan filament:assets
```

Optionally register the plugin in your Panel Provider (to set a default max height):

```
use Alonadashko\FilamentTableVerticalScroll\FilamentTableVerticalScrollPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FilamentTableVerticalScrollPlugin::make()
                ->maxHeight('calc(100vh - 16rem)'),
        ]);
}
```

Usage
-----

[](#usage)

```
use Filament\Tables\Table;

public function table(Table $table): Table
{
    return $table
        ->columns([
            // ...
        ])
        ->verticalScrollable();
}
```

Custom container height:

```
$table->verticalScrollable('400px');
// or
$table->verticalScrollable('50vh');
// or
$table->verticalScrollable('calc(100vh - 12rem)');
```

How it works
------------

[](#how-it-works)

1. `->verticalScrollable()` marks the table with the `fi-ta-vertical-scrollable` class.
2. CSS limits the height of the content container (`.fi-ta-content` / `.fi-ta-content-ctn`) and enables `overflow-y: auto`.
3. `thead` uses `position: sticky`, so the header stays visible while rows scroll.

Compatibility: **Filament 3 / 4 / 5**.

Configuration
-------------

[](#configuration)

```
php artisan vendor:publish --tag="filament-table-vertical-scroll-config"
```

```
// config/filament-table-vertical-scroll.php
return [
    'max_height' => 'calc(100vh - 20rem)',
];
```

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance100

Actively maintained with recent releases

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity43

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

Unknown

Total

1

Last Release

0d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0b725004d9281a8dc195a21fb6b7d4d2291a466beeab18c9c2f927fed2313346?d=identicon)[AlenaDashko](/maintainers/AlenaDashko)

---

Top Contributors

[![Alena009](https://avatars.githubusercontent.com/u/21222126?v=4)](https://github.com/Alena009 "Alena009 (3 commits)")

---

Tags

laraveltablefilamentfilament-pluginscrollsticky-headervertical-scroll

### Embed Badge

![Health badge](/badges/alonadashko-filament-table-vertical-scroll/health.svg)

```
[![Health](https://phpackages.com/badges/alonadashko-filament-table-vertical-scroll/health.svg)](https://phpackages.com/packages/alonadashko-filament-table-vertical-scroll)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3915.5k](/packages/rawilk-profile-filament-plugin)[backstage/mails

View logged mails and events in a beautiful Filament UI.

16429.7k](/packages/backstage-mails)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

85240.3k10](/packages/stephenjude-filament-two-factor-authentication)[awcodes/filament-curator

A media picker plugin for FilamentPHP.

440384.7k29](/packages/awcodes-filament-curator)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

278359.3k12](/packages/croustibat-filament-jobs-monitor)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6758.2k2](/packages/marcelweidum-filament-passkeys)

PHPackages © 2026

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