/**
  * Get the ending URLs of a pagination slider.
  *
  * @return array
  */
 public function getFinish()
 {
     return $this->paginator->getUrlRange($this->lastPage() - 1, $this->lastPage());
 }
Example #2
0
 /**
  * Get the page range for the current page window.
  *
  * @param  int $onEachSide
  * @return array
  */
 public function getAdjacentUrlRange($onEachSide)
 {
     return $this->paginator->getUrlRange($this->currentPage(), $this->currentPage());
 }