Как я могу добавить paginate к этому запросу? Данные о нумерации страниц не отображаются в моем ответе json.
$posts = Post::with('comments','settings')
->whereIn('user_id', function($query)
use($id){
$query->select('followable_id')
->from('followables')
->where('user_id', $id)->paginate(10);
}
)->orWhere('user_id', $id)
->latest()
->get();
return response()->json($posts);