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();
}
16 replies