try using skip and take as described in documentation
https://laravel.com/docs/5.3/queries
$posts = Post::orderBy('created_at', 'desc')->skip(3)->take(3)->get();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community