{% set paginator = getPaginator(namespace) %} {% set show_current_page = show_current_page|default(true) %} {% if paginator.last_page != -1 %} {% set show_next_button = (paginator.current_page < paginator.last_page) ? '' : 'invisible' %} {% endif %} {% set show_prev_button = (paginator.current_page == 1) ? 'invisible' : '' %} {% if paginator.last_page > 1 %} {% set icon = icon|default({ color: 'text-gray-300', size: 'h-8 w-8', class: 'cursor-pointer hover:text-red-500 transition duration-1000 ease-in-out' }) %}