@php $currentId = auth()->id(); @endphp
@forelse($messages as $m)
@php $isSelf = (int) $m->user_id === (int) $currentId; @endphp
@if($isSelf)
Anda
@else
{{ $m->user?->jabatan_with_satuan ?? $m->user?->name }}
@endif
{{ $m->created_at?->timezone(config('app.timezone'))->format('d/m/Y H:i') }}
@if($m->body)
{{ $m->body }}
@endif
@if($m->hasAttachment())
@endif
@empty
Belum ada percakapan. Mulai dengan mengirim pesan atau lampiran.
@endforelse