Created
May 14, 2020 19:42
-
-
Save mkdesignn/db7f1b7759b95a3acd0dd9fa41edceba to your computer and use it in GitHub Desktop.
Custom-pagination
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected function paginate($query) | |
{ | |
$paginate = $query->paginate($this->row_per_page, null, null, $this->page); | |
return [$paginate->toArray(), $paginate->render()->toHtml()]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment