@foreach ($chats as $chat)
@php
// Get the other user in the chat
$otherUser =
$chat->first_user_id == auth()->id() ? $chat->secondUser : $chat->firstUser;
$lastMessage = $chat->messages->first();
$hasUnread = $chat->unread_messages_count > 0;
@endphp