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_
You need remove method all() :
all()
$user_dispatches = Dispatch::where('user_id', Auth::id())->paginate(10);
Because all() return a Collection while paginate() used a Builder
Collection
paginate()
Builder