PHPackages                             hotsed/filament-sticky-actions - 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. hotsed/filament-sticky-actions

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

hotsed/filament-sticky-actions
==============================

A Filament plugin to make table action columns sticky when scrolling horizontally

0.1(3mo ago)058MITJavaScriptPHP ^8.1

Since Feb 1Pushed 3mo agoCompare

[ Source](https://github.com/HotsEd/filament-sticky-actions)[ Packagist](https://packagist.org/packages/hotsed/filament-sticky-actions)[ Docs](https://github.com/hotsed/filament-sticky-actions)[ RSS](/packages/hotsed-filament-sticky-actions/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

[![filament-sticky-actions-art](https://camo.githubusercontent.com/34ae900da7e7710ec7a18c7b9ec869a962c6a40388117f1f58b788bf9b6804c7/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f46696c616d656e74253230537469636b79253230416374696f6e732e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d686f7473656425324666696c616d656e742d737469636b792d616374696f6e73267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d4b6565702b796f75722b7461626c652b616374696f6e732b76697369626c652b7768696c652b7363726f6c6c696e67266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d313030707826696d616765733d68747470732533412532462532466c61726176656c2e636f6d253246696d672532466c6f676f6d61726b2e6d696e2e737667)](https://github.com/HotsEd/filament-sticky-actions) [ ![FILAMENT 4.x](https://camo.githubusercontent.com/13befbe0cffd101b2484ce1cdd985dabcddcbf1176d17a675674d53af99cfdbc/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f46494c414d454e542d342e782d4542423330343f7374796c653d666f722d7468652d6261646765) ](https://filamentphp.com/docs/4.x/panels/installation) [ ![Packagist](https://camo.githubusercontent.com/7caac529088c05dda94e98abd50869db0f09067710814738da21b51312fccfd3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f686f747365642f66696c616d656e742d737469636b792d616374696f6e732e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d7061636b6167697374) ](https://packagist.org/packages/hotsed/filament-sticky-actions) [ ![Downloads](https://camo.githubusercontent.com/0ff1e25fe76224035cd93986e67a9cf32c381ca6e41bb7c3cfa923376ff4102d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f686f747365642f66696c616d656e742d737469636b792d616374696f6e732e7376673f7374796c653d666f722d7468652d6261646765) ](https://packagist.org/packages/hotsed/filament-sticky-actions)

Sticky Actions
==============

[](#sticky-actions)

Keep your table actions visible while scrolling horizontally. Perfect for tables with many columns.

Features
--------

[](#features)

- 📌 **Sticky Actions Column** - Actions stay visible when scrolling horizontally
- 🎨 **Theme-Aware** - Automatically detects and uses your theme's colors
- 🌙 **Dark Mode Support** - Colors update when switching themes
- 📊 **Striped Rows Support** - Correctly handles alternating row colors
- 🔲 **Scroll Shadow** - Subtle shadow indicator when there's more content
- ⚡ **Zero Configuration** - Just call `->stickyActions()` and it works

Compatibility
-------------

[](#compatibility)

Package VersionFilament Version1.x4.x

**Table of Contents**- [Installation](#installation)
- [Usage](#usage)
- [How It Works](#how-it-works)
- [Requirements](#requirements)
- [License](#license)

Installation
============

[](#installation)

```
composer require hotsed/filament-sticky-actions
```

After installing, publish the assets:

```
php artisan filament:assets
```

Usage
=====

[](#usage)

Enable sticky actions on any table by calling `->stickyActions()`:

```
use Filament\Tables\Table;

public function table(Table $table): Table
{
    return $table
        ->columns([
            // your columns...
        ])
        ->actions([
            // your actions...
        ])
        ->stickyActions(); // Enable sticky actions
}
```

You can also conditionally enable it:

```
->stickyActions(condition: $shouldStick)
```

How It Works
============

[](#how-it-works)

1. Adds a `stickyActions()` macro to Filament's Table class
2. When enabled, adds `data-sticky-actions` attribute to the table
3. CSS makes the actions column sticky with `position: sticky; right: 0`
4. JavaScript automatically detects background colors from your theme
5. Blends semi-transparent striped row colors correctly
6. Shadow indicator disappears when scrolled to the end

Requirements
============

[](#requirements)

- PHP 8.1+
- Laravel 10+
- Filament 4.x

License
=======

[](#license)

MIT License. See [LICENSE](LICENSE) for more information.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance81

Actively maintained with recent releases

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

 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

101d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c9776790882984adf4b4efc9964a7405d339a1a11ebf768482cd36f0e4b10483?d=identicon)[hotsed](/maintainers/hotsed)

---

Top Contributors

[![HotsEd](https://avatars.githubusercontent.com/u/89146388?v=4)](https://github.com/HotsEd "HotsEd (25 commits)")

---

Tags

laraveltableactionsfilamentsticky

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/hotsed-filament-sticky-actions/health.svg)

```
[![Health](https://phpackages.com/badges/hotsed-filament-sticky-actions/health.svg)](https://phpackages.com/packages/hotsed-filament-sticky-actions)
```

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9838.0k](/packages/aymanalhattami-filament-context-menu)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

33184.7k6](/packages/schmeits-filament-character-counter)

PHPackages © 2026

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