Skip to content
Advertisement

no idea why i get this error : Method IlluminateViewView::paginate does not exist?

i am trying to paginate this data :

JavaScript

but i keep getting this error :

Method IlluminateViewView::paginate does not exist.

Advertisement

Answer

paginate() should be called from the query, not from view(). So you should change get() to select() and call paginate(4) afterwards.

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement