Level 33
Pull them for example 10 by 10. So return Message::latest()->paginate(10); in your controller.
Then in vue you can get the first 10 like this:
http://domain.com/messages?page=1
second like this:
http://domain.com/messages?page=2
and so on. There lots of vue.js pagination components that are very useful. For example: http://hootlex.github.io/vuejs-paginator/
Super easy.
1 like