© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•11mo ago•
15 replies
Ikwinder

Table pagination issue

Hey mates i am new on filament and creating a table with pagination but i didn't get pagination which i need , its only showing prev and next button let me show you

my code is :

public function table(Table $table): Table
{
return $table
->query(Analytic::query()
->orderBy('created_at', 'desc'))
->columns([
TextColumn::make('ip'),
TextColumn::make('country'),
TextColumn::make('state'),
TextColumn::make('city'),
TextColumn::make('date_time'),
TextColumn::make('device'),
TextColumn::make('target_url'),
TextColumn::make('utm_parameter_source'),
TextColumn::make('utm_parameter_medium'),
TextColumn::make('utm_parameter_compaign'),
TextColumn::make('utm_parameter_content'),
])
->defaultPaginationPageOption(20)
->striped();
}
Solution
Yeah mate. Its working. Thank you very much. 🙏
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Table pagination button issue
FilamentFFilament / ❓┊help
8mo ago
Styling issue with table builder pagination
FilamentFFilament / ❓┊help
14mo ago
Table pagination not displaying
FilamentFFilament / ❓┊help
2mo ago
Reset Table Widget Pagination
FilamentFFilament / ❓┊help
2y ago