Level 47
Replace get() with paginate().
my model like this
public function mostAnswer()
{
$quests = Questin::with("question", "answer")
->get()
->sortBy(function ($banswer) {
return $banswer->answer();
})->reverse()
->take(10);
return view('homepage', ['quests' => $quests]);
}
its working but i try pagination() then error. i know, its bad choise. i want to show most answers posts with pagination. I do not know how to do it.
example : https://laracasts.com/discuss?popular=1&page=2
thanks for answers.
Please or to participate in this conversation.