Scroll to top
Auto-scroll to top on pagination page change for Filament panels.
Author:
Germán Boquizo Sánchez
Documentation
Scroll to top on pagination change for Filament panels
Automatically scroll the page back to the top whenever a user navigates to a new table page in Filament 4 and 5.
#Overview
When a user changes pages in a Filament table, the scroll position stays where it was — forcing them to manually scroll back up. This plugin adds a smooth scroll-to-top behaviour on every pagination change, with zero configuration.
#Version compatibility
| Plugin | Filament | PHP |
|---|---|---|
| 1.x | 4.x – 5.x | ^8.2 |
#📦 Installation
composer require gboquizosanchez/filament-scroll-to-top
Register the plugin in your panel provider (app/Providers/Filament/AdminPanelProvider.php):
use Boquizo\FilamentScrollToTop\ScrollToTopPlugin;
->plugins([
ScrollToTopPlugin::make(),
])
#🔧 Usage
Add the ScrollToTop trait to any ListRecords page or RelationManager that should scroll on pagination:
use Boquizo\FilamentScrollToTop\Traits\ScrollToTop;
use Filament\Resources\Pages\ListRecords;
final class ListGames extends ListRecords
{
use ScrollToTop;
// ...
}
use Boquizo\FilamentScrollToTop\Traits\ScrollToTop;
use Filament\Resources\RelationManagers\RelationManager;
final class GamesRelationManager extends RelationManager
{
use ScrollToTop;
// ...
}
That's it. No further configuration needed.
#🧪 Testing
composer test
#Contributing
Contributions are welcome!
- 🐛 Report bugs via GitHub Issues
- 💡 Suggest features or improvements
- 🔧 Submit pull requests with fixes or enhancements
#Credits
- Author: Germán Boquizo Sánchez
#📄 License
This package is open-source software licensed under the MIT License.
The author
I am Germán, a web developer with experience in Laravel, FilamentPHP and PHP. I love programming, PHP and Laravel 🥰.
Contact me if you need some help with FilamentPHP or Laravel. I am always happy to help.
From the same author
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Spotlight Pro
Browse your Filament Panel with ease. Filament Spotlight Pro adds a Spotlight/Raycast like Command Palette to your Filament Panel.
Dennis Koch
Data Lens
Advanced Data Visualization for Laravel Filament - a premium reporting solution enabling custom column creation, sophisticated filtering, and enterprise-grade data insights within admin panels.
Padmission