Trying to get the latest task for each user, so if there is 100 users, I want to get only 10 to display per page but it won't work. When adding the paginate method I get the following error:
Method Illuminate\Database\Eloquent\Collection::paginate does not exist.
If I remove the method it all works fine, I get the results expected, I just want to paginate. This is my code:
$users = User::with('latestTask')->get()->paginate(10);