I made table conversations and table messages, each conversation has many messages, and i want to show the latest message a conversation has, so i use this
$conversation->messages->last()->body
its return the last message in the record but not the latest,
this is my record
the latest messages not the last record , when i insert new message its not in the last record but inserted at some random order, that make the last() not work properly,