Ishatanjeeb's avatar

Laravel 5.2 Pagination

I just fetch all post that user posted now I want to use paginate.Can anyone help? PageController

  $user = Auth::user();
        $allPost = $user->posts;
        return view('admin.index', compact('allPost'));
0 likes
1 reply
wiedem's avatar
wiedem
Best Answer
Level 1

You can call paginate on relations.

$allPost = $user->posts()->paginate(5);

Please or to participate in this conversation.