how to create a pagination summary .

I want to create a pagination summary like the one in the attached image. I have tried the below code, but it is not working .
use Filament\Tables\Table;

public static function table(Table $table): Table
{
return $table
->columns([
TextColumn::make('name'),
TextColumn::make('status'),
])
->paginated([10, 25, 50,100])
->extremePaginationLinks();

}
use Filament\Tables\Table;

public static function table(Table $table): Table
{
return $table
->columns([
TextColumn::make('name'),
TextColumn::make('status'),
])
->paginated([10, 25, 50,100])
->extremePaginationLinks();

}
3 Replies
Sourabh
SourabhOP9h ago
No description
toeknee
toeknee3h ago
What is it you are currently seeing? That should be the default unless you enable SimplePagination

Did you find this page helpful?