Commit 7e0914a
Tortue Torche
Replace Illuminate\Database\Eloquent\Collection by Illuminate\Support\Collection to support collection of Laravel's Paginator.
So you can do in your Controller :
$articles = Article::paginate(5);
And in your 'app/views/articles/index.blade.php':
@div_for($articles->getCollection()) as($article)
{{ $article->name }}
@end_div_for
More info about pagination with Laravel:
http://laravel.com/docs/4.2/pagination1 parent 60aa832 commit 7e0914a
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
107 | | - | |
108 | | - | |
| 107 | + | |
| 108 | + | |
109 | 109 | | |
110 | 110 | | |
111 | 111 | | |
| |||
0 commit comments