Level 1
You can call paginate on relations.
$allPost = $user->posts()->paginate(5);
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'));
You can call paginate on relations.
$allPost = $user->posts()->paginate(5);
Please or to participate in this conversation.