@if ($user->image)
@else
{{ strtoupper(substr($user->name, 0, 1)) }}
@endif
@if ($user->lastMessage)
@php
$time = $user->lastMessage->created_at->diffForHumans(null, true);
$shorthand = str_replace(
[' seconds', ' minutes', ' hours', ' days', ' weeks', ' months', ' years'],
['s', 'm', 'h', 'd', 'w', 'mo', 'y'],
$time,
);
@endphp
{{ $shorthand }}
@else
No messages
@endif