Browse Source

Tweak eloquent->paginate() for new paginator constructor API.

Taylor Otwell 13 years ago
parent
commit
5a43f29f31
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/db/eloquent.php

+ 1 - 1
system/db/eloquent.php

@@ -202,7 +202,7 @@ abstract class Eloquent {
 
 		$current_page = \System\Paginator::page($total, $per_page);
 
-		return new \System\Paginator($this->for_page($current_page, $per_page)->get(), $total, $per_page);
+		return \System\Paginator::make($this->for_page($current_page, $per_page)->get(), $total, $per_page);
 	}
 
 	/**