paginate
methodpublic function index()
{
$posts = Post::orderBy('title', 'asc')->paginate(1);
return $posts;
}
In blade template we will have pagination{{$posts->links()}}
if there are less records then per page, pagination will not appear