paginator->currentPage() <= 1) { return $this->getDisabledTextWrapper($text); } $url = $this->paginator->url( $this->paginator->currentPage() - 1 ); return $this->getPageLinkWrapper($url, $text, 'prev'); } /** * Get the next page pagination element. * * @param string $text * @return string */ public function getNextButton($text = '»') { // If the current page is greater than or equal to the last page, it means we // can't go any further into the pages, as we're already on this last page // that is available, so we will make it the "next" link style disabled. if (! $this->paginator->hasMorePages()) { return $this->getDisabledTextWrapper($text); } $url = $this->paginator->url($this->paginator->currentPage() + 1); return $this->getPageLinkWrapper($url, $text, 'next'); } }