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();
        
}
Was this page helpful?