@forelse($conversation->chat as $chat)
@if(auth()->id() != $chat->user_id)
@else
@endif
@empty
{{__("Start a conversation with ")}}
@if($conversation->sender_id == auth()->id())
{{ $conversation->reciever->name }}
@else
{{ $conversation->sender->name }}
@endif
@endforelse