@php
$thread = $getRecord();
$clientName = optional($thread->client)->name ?? 'Cliente';
@endphp
@foreach($thread->messages()->orderBy('created_at')->get() as $m)
@php
$isAdmin = $m->sender_type === 'admin';
$meta = ($isAdmin ? 'Suporte ADMIN' : $clientName)
.' ยท '.$m->created_at->format('d/m H:i');
@endphp
@if(! $isAdmin)
{{ mb_substr($clientName, 0, 1) }}
@endif
{{ $m->message }}
{{ $meta }}
@if($isAdmin)
SA
@endif
@endforeach