PHPackages                             unexpectedjourney/filament-sticky-resource-form-footers - 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. unexpectedjourney/filament-sticky-resource-form-footers

ActiveLibrary

unexpectedjourney/filament-sticky-resource-form-footers
=======================================================

Make Filament create/edit page form footers sticky.

v1.0.2(2y ago)1670↓100%1[2 PRs](https://github.com/rhiannonjourney/filament-sticky-resource-form-footers/pulls)MITJavaScriptPHP ^8.1

Since Oct 19Pushed 1y ago1 watchersCompare

[ Source](https://github.com/rhiannonjourney/filament-sticky-resource-form-footers)[ Packagist](https://packagist.org/packages/unexpectedjourney/filament-sticky-resource-form-footers)[ Docs](https://github.com/unexpectedjourney/filament-sticky-resource-form-footers)[ GitHub Sponsors](https://github.com/unexpectedjourney)[ RSS](/packages/unexpectedjourney-filament-sticky-resource-form-footers/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (14)Versions (6)Used By (0)

Make Filament create/edit page form footers sticky.
===================================================

[](#make-filament-createedit-page-form-footers-sticky)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2ea2551e491df2bd075a55daf97640bc13e9d4547c32bb3937513d267839dc34/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f756e65787065637465646a6f75726e65792f66696c616d656e742d737469636b792d7265736f757263652d666f726d2d666f6f746572732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/unexpectedjourney/filament-sticky-resource-form-footers)[![GitHub Tests Action Status](https://camo.githubusercontent.com/dffc626d28d41d93fc8003ce51a69c475fd9558b8510d977f2a73f9fca1c3171/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f756e65787065637465646a6f75726e65792f66696c616d656e742d737469636b792d7265736f757263652d666f726d2d666f6f746572732f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/unexpectedjourney/filament-sticky-resource-form-footers/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/0a36112f46a9f489d3582cd962f28fccb92cfe8474f8a9fdf682245a36831d67/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f756e65787065637465646a6f75726e65792f66696c616d656e742d737469636b792d7265736f757263652d666f726d2d666f6f746572732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/unexpectedjourney/filament-sticky-resource-form-footers/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/6825f62f362d0876de13d618b894b44ccccc5b66db1460c626bfb32cec2a849a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f756e65787065637465646a6f75726e65792f66696c616d656e742d737469636b792d7265736f757263652d666f726d2d666f6f746572732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/unexpectedjourney/filament-sticky-resource-form-footers)

Add sticky footers to the Creat/Edit pages of your Filament resources. Inspired heavily by .

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

[](#installation)

You can install the package via composer:

```
composer require unexpectedjourney/filament-sticky-resource-form-footers
```

Usage
-----

[](#usage)

Just add the plugin to your panel provider, and you're good to go.

```
use UnexpectedJourney\FilamentStickyResourceFormFooters\FilamentStickyResourceFormFootersPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FilamentStickyResourceFormFootersPlugin::make(),
        ])
    ])
}
```

### Floating Theme

[](#floating-theme)

To use the 'Floating Theme' use the `floating()` method when instantiating the plugin.

When using the floating theme you can also use the `colored()` method to add your primary background color to the footer.

```
use UnexpectedJourney\FilamentStickyResourceFormFooters\FilamentStickyResourceFormFootersPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FilamentStickyResourceFormFootersPlugin::make()
                ->floating()
                ->colored()
        ])
    ]);
}
```

Both the `floating()` and `colored()` methods can receive closure that will be evaluated to determine if the theme should be applied. This allows you to apply the theme conditionally, for instance, based off of user preferences.

```
use UnexpectedJourney\FilamentStickyResourceFormFooters\FilamentStickyResourceFormFootersPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FilamentStickyResourceFormFootersPlugin::make()
                ->floating(fn():bool => auth()->user()->use_floating_header)
                ->colored(fn():bool => auth()->user()->use_floating_header)
        ])
    ]);
}
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Rhiannon Journey](https://github.com/rhiannonjourney)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 70% 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 ~82 days

Total

3

Last Release

771d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/49036ffcea54e2351dde75438e4c77a949c37333381a0e508f0595d70ed387c4?d=identicon)[rhiannonjourney](/maintainers/rhiannonjourney)

---

Top Contributors

[![rhiannonjourney](https://avatars.githubusercontent.com/u/148484535?v=4)](https://github.com/rhiannonjourney "rhiannonjourney (14 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (4 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (2 commits)")

---

Tags

laravelunexpectedjourneyfilament-sticky-resource-form-footers

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/unexpectedjourney-filament-sticky-resource-form-footers/health.svg)

```
[![Health](https://phpackages.com/badges/unexpectedjourney-filament-sticky-resource-form-footers/health.svg)](https://phpackages.com/packages/unexpectedjourney-filament-sticky-resource-form-footers)
```

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

206120.5k1](/packages/guava-filament-knowledge-base)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[bezhansalleh/filament-plugin-essentials

A collection of essential traits that streamline Filament plugin development by taking care of the boilerplate, so you can focus on shipping real features faster

27584.7k16](/packages/bezhansalleh-filament-plugin-essentials)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7565.0k4](/packages/guava-filament-modal-relation-managers)

PHPackages © 2026

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