F
Filamentβ€’3d ago
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
14 Replies
Ikwinder
IkwinderOPβ€’3d ago
but i want this type of pagination
Ikwinder
IkwinderOPβ€’3d ago
Can you help me please?
No description
LeandroFerreira
LeandroFerreiraβ€’3d ago
Is it a custom livewire component?
Ikwinder
IkwinderOPβ€’3d ago
No, Its prebuilt functionality
LeandroFerreira
LeandroFerreiraβ€’3d ago
could you explain where are you rendering this table?
Ikwinder
IkwinderOPβ€’3d ago
let me show you my output
Ikwinder
IkwinderOPβ€’3d ago
this is my table pagination
No description
Ikwinder
IkwinderOPβ€’3d ago
i am rendering table with help of table widget on default dashbaord
LeandroFerreira
LeandroFerreiraβ€’3d ago
ok, add CanPaginateRecords trait to the widget
Ikwinder
IkwinderOPβ€’3d ago
Okay Thanks . let me add and get back to you.
LeandroFerreira
LeandroFerreiraβ€’3d ago
this
use Tables\Concerns\CanPaginateRecords;

public function table(Table $table): Table
...
use Tables\Concerns\CanPaginateRecords;

public function table(Table $table): Table
...
Ikwinder
IkwinderOPβ€’3d ago
Trait "Tables\Concerns\CanPaginateRecords" not found return this error
LeandroFerreira
LeandroFerreiraβ€’3d ago
use \Filament\Tables\Concerns\CanPaginateRecords;
Solution
Ikwinder
Ikwinderβ€’3d ago
Yeah mate. Its working. Thank you very much. πŸ™

Did you find this page helpful?