@extends('layouts.admin-new') @section('content')

Conversations

@forelse($conversations as $conversation) @php($avatar = $conversation->participant->avatar ?? asset(Storage::url('public/defaults/avatars/default.png')) )
profile
{{ $conversation->participant->name }}
{{ $conversation->lastMessage->created_at->diffForHumans() }}
@if ($conversation->unread)
{{ $conversation->unread }} Unread
@endif
@empty
No conversations
@endforelse
@endsection