wotz / filament-table-filter-presets
Save and load named filter presets per user for Filament tables
Installs: 39
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/wotz/filament-table-filter-presets
Requires
- php: ^8.4
- filament/filament: ^5.0
- illuminate/contracts: ^11.0||^12.0
- spatie/laravel-package-tools: ^1.16
- wotz/laravel-locale-collection: ^2.0
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.8
- orchestra/testbench: ^10.0
- pestphp/pest: ^4.0
- pestphp/pest-plugin-arch: ^4.0
- pestphp/pest-plugin-laravel: ^4.0
- phpstan/extension-installer: ^1.4
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
This package is auto-updated.
Last update: 2026-02-19 10:47:26 UTC
README
Add the HasSavedTableFilters trait to any ListRecords page to get Save, Load, and Delete header actions. Filter presets are scoped per user and per resource, stored as JSON, and persisted via a single saved_table_filters table.
Installation
You can install the package via composer:
composer require wotz/filament-table-filter-presets
You can publish and run the migrations with:
php artisan vendor:publish --tag="filament-table-filter-presets-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="filament-table-filter-presets-config"
This is the contents of the published config file:
return [ 'administrator_model' => User::class, ];
Documentation
For the full documentation, check here.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
If you discover any security-related issues, please email info@whoownsthezebra.be instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.

