/**
* 下一页按钮
* @param string $text
* @return string
*/
protected function getNextButton(string $text = '>'): string
{
if (!$this->hasMore) {
return $this->getDisabledTextWrapper($text);
}
$url = $this->url($this->lastPage);
return $this->getPageLinkWrapper($url, $text);
}