You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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/pagination
0 commit comments