unexpectedjourney / filament-sticky-resource-form-footers
Make Filament create/edit page form footers sticky.
Fund package maintenance!
unexpectedjourney
Installs: 105
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Language:JavaScript
Requires
- php: ^8.1
- filament/filament: ^3.0
- illuminate/contracts: ^10.0|^11.0
- spatie/laravel-package-tools: ^1.15.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9|^8.1
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0|^9.0
- pestphp/pest: ^2.0
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2024-10-08 14:25:33 UTC
README
Add sticky footers to the Creat/Edit pages of your Filament resources. Inspired heavily by https://github.com/awcodes/filament-sticky-header/.
Installation
You can install the package via composer:
composer require unexpectedjourney/filament-sticky-resource-form-footers
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
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
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.