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

v0.3.1 2026-02-19 10:45 UTC

This package is auto-updated.

Last update: 2026-02-19 10:47:26 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

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.

filters.png save-filters.png

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.