Alodon's avatar

Pagination error

I am getting this error(Call to undefined method App\Post::sortByDesc()).I am trying to sort items and then wanna use pagination. My code


    public function tutorials(Request $request)
    {

        $posts = Post::sortByDesc('visit_count')->paginate(5);

        $user = User::whereAdmin(1)->first();

        return view('blog',compact('posts','user'));
    }
0 likes
5 replies
yjuyjuy's avatar
yjuyjuy
Best Answer
Level 1

It should be

Post::orderBy('visit_count',’desc’)

Please or to participate in this conversation.