@extends('layouts.app') @section('title', __('Conversations')) @push('css') @endpush @section('content')
{{-- Message --}}
@foreach($conversations as $con) @include('panel._chat.message-layout', ['con' => $con, 'newMessage' => $con->participants->where('id', auth()->user()->id)->first()->pivot->unread ]) @endforeach
{{-- Message --}}
@foreach($groups as $con) @include('panel._chat.group-layout', ['con' => $con, 'newMessage' => $con->participants->where('id', auth()->user()->id)->first()->pivot->unread]) @endforeach
@stop @push('script') @endpush