Laravel Method paginate does not exist

前端 未结 5 1701
情深已故
情深已故 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:21

    for use all recorde and pagination , you need use below code :

    $user_dispatches = Disspath::paginate(8);
    

提交回复
热议问题