Do you mean pagination links? In the same way like in Laravel, with custom pagination view.
https://laravel.com/docs/8.x/pagination#customizing-the-pagination-view
{{ $items->links('custom.pagination') }}
For example views/custom/pagination.blade.php
@if ($paginator->hasPages())
<nav class="text-center">
<ul class="pagination pagination-md">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<li class="disabled"><span>@lang('pagination.previous')</span></li>
@else
<li><a href="{{ PaginateRoute::previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a></li>
@endif
{{-- Pagination Elements --}}
@foreach ($elements as $element)
{{-- "Three Dots" Separator --}}
@if (is_string($element))
<li class="disabled"><span>{{ $element }}</span></li>
@endif
{{-- Array Of Links --}}
@if (is_array($element))
@foreach ($element as $page => $url)
@if ($page == $paginator->currentPage())
<li class="active"><span>{{ $page }}</span></li>
@else
@if (in_array($paginator->currentPage(), [$page - 1, $page, $page + 1]))
<li><a href="{{ PaginateRoute::pageUrl($page) }}">{{ $page }}</a></li>
@else
<li class="hidden-xs"><a href="{{ PaginateRoute::pageUrl($page) }}">{{ $page }}</a></li>
@endif
@endif
@endforeach
@endif
@endforeach
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<li><a href="{{ PaginateRoute::nextPageUrl($paginator) }}" rel="next">@lang('pagination.next')</a></li>
@else
<li class="disabled"><span>@lang('pagination.next')</span></li>
@endif
</ul>
</nav>
@endif