Пример #1
0
 /**
  * Create a paginator for an un-grouped pagination statement.
  *
  * @param  \Nova\Pagination\Factory  $paginator
  * @param  int    $perPage
  * @param  array  $columns
  * @return \Nova\Pagination\Paginator
  */
 protected function ungroupedPaginate($paginator, $perPage, $columns)
 {
     $total = $this->getPaginationCount();
     // Once we have the total number of records to be paginated, we can grab the
     // current page and the result array. Then we are ready to create a brand
     // new Paginator instances for the results which will create the links.
     $page = $paginator->getCurrentPage($total);
     $results = $this->forPage($page, $perPage)->get($columns);
     return $paginator->make($results, $total, $perPage);
 }
Пример #2
0
 /**
  * Get a paginator for an ungrouped statement.
  *
  * @param  \Nova\Pagination\Factory  $paginator
  * @param  int    $perPage
  * @param  array  $columns
  * @return \Nova\Pagination\Paginator
  */
 protected function ungroupedPaginate($paginator, $perPage, $columns)
 {
     $total = $this->query->getPaginationCount();
     $page = $paginator->getCurrentPage($total);
     $this->query->forPage($page, $perPage);
     return $paginator->make($this->get($columns)->all(), $total, $perPage);
 }
Пример #3
0
 /**
  * Set the base URL in use by the paginator.
  *
  * @param  string  $baseUrl
  * @return void
  */
 public function setBaseUrl($baseUrl)
 {
     $this->factory->setBaseUrl($baseUrl);
 }
Пример #4
0
 /**
  * Get a paginator for an ungrouped statement.
  *
  * @param  \Nova\Pagination\Factory  $paginator
  * @param  int    $perPage
  * @param  array  $columns
  * @return \Nova\Pagination\Paginator
  */
 protected function ungroupedPaginate($paginator, $perPage, $columns)
 {
     $total = $this->query->getPaginationCount();
     // Once we have the paginator we need to set the limit and offset values for
     // the query so we can get the properly paginated items. Once we have an
     // array of items we can create the paginator instances for the items.
     $page = $paginator->getCurrentPage($total);
     $this->query->forPage($page, $perPage);
     return $paginator->make($this->get($columns)->all(), $total, $perPage);
 }