@php $total_msg = 0; $conv = \App\Models\Conversation::where('receiver_id', Auth::user()->id)->orwhere('sender_id', Auth::user()->id)->first(); if(isset($conv)){ $total_msg = $conv->messages->where('read', 0)->where('receiver_id', Auth::user()->id)->count(); } @endphp