Laravel Method paginate does not exist

前端 未结 5 1644
情深已故
情深已故 2021-02-01 06:55

I am trying to paginate Model result, but I am getting \"Method paginate does not exist.\". Here is my code:

$user_dispatches = Dispatch::all()->where(\'user_         


        
5条回答
  •  情歌与酒
    2021-02-01 07:27

    You need remove method all() :

    $user_dispatches = Dispatch::where('user_id', Auth::id())->paginate(10);
    

    Because all() return a Collection while paginate() used a Builder

提交回复
热议问题