nahid / talk

Talk is a real-time users messaging and chatting system for Laravel.
MIT License
1.61k stars 327 forks source link

Getting latest messages from db #115

Closed shenjiayu closed 6 years ago

shenjiayu commented 6 years ago

Currently, all getConversations(XX), getMessages(xx) functions are retrieving messages from the earliest to the latest with the help of $offset and $take. But In most cases, users need to see latest messages first and then scroll up to see old messages. Would it be better to do things like $query->latest()->offset($offset)->take($take)?

nahid commented 6 years ago

fixed