Refactoring query builder for pagination changes.
This commit is contained in:
@@ -464,9 +464,9 @@ class Query {
|
||||
{
|
||||
$total = $this->count();
|
||||
|
||||
$page = \System\Paginator::page(ceil($total / $per_page));
|
||||
$current_page = \System\Paginator::page($total, $per_page);
|
||||
|
||||
return new \System\Paginator($this->for_page($page, $per_page)->get(), $total, $per_page);
|
||||
return new \System\Paginator($this->for_page($current_page, $per_page)->get(), $total, $per_page);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user