[Vuejs]-I have problem with fetching data with laravel when i use relations and paginate

0👍

Try this:

$results = Posts::with('comment')->orderBy('created_at', 'desc')->paginate(10);

return response()->json(['results' => $results]);

Leave a comment