@if($chats->count() >= 1)
@foreach($chats as $chat)
@if($chat->messages()->where('status', 0)->where('user_id', '!=', Auth::user()->ID)->get()->count() > 0)
@php
$usuario = $chat->messages()->where('status', 0)->where('user_id', '!=', Auth::user()->ID)->first();
@endphp
-
{{$chat->messages()->where('status', 0)->where('user_id', '!=', Auth::user()->ID)->get()->count()}}
@endif
@endforeach
@endif