I want yii2 pagination to display only Previous and Next buttons excuding page number's links.
I have searched but not found proper solution.
My pagination widget in view :
<?php echo LinkPager::widget([
'pagination' => $pagination,
'prevPageLabel' => 'Previous',
'nextPageLabel' => 'Next',
]);
?>
I just want Previous and Next buttons in pagination and hide page numbers link.