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();
}
14 Replies
but i want this type of pagination
Can you help me please?

Is it a custom livewire component?
No, Its prebuilt functionality
could you explain where are you rendering this table?
let me show you my output
this is my table pagination

i am rendering table with help of table widget on default dashbaord
ok, add
CanPaginateRecords
trait to the widgetOkay Thanks . let me add and get back to you.
this
Trait "Tables\Concerns\CanPaginateRecords" not found return this error
use \Filament\Tables\Concerns\CanPaginateRecords;
Solution
Yeah mate. Its working. Thank you very much. π