Askedio\ItemPaginator\ItemPaginator::nextPageUrl PHP Method

nextPageUrl() public method

Get the URL for the next page.
public nextPageUrl ( ) : string | null
return string | null
    public function nextPageUrl()
    {
        if ($this->hasMorePages()) {
            return $this->url($this->lastItem());
        }
    }