@forelse ($conversation->messages as $msg)
@if ($msg->sender_id != auth()->id())
@if ($msg->attachment_path && count($msg->attachment_path) > 0)
@if (is_array($msg->attachment_path) && count($msg->attachment_path) > 0)
@foreach ($msg->attachment_path as $key => $attachment)
@endforeach
@endif
@endif
@if ($msg->message)
{{ $msg->message }}
{{ $msg->created_at->format('g:i A') }}
@endif
@else
@if ($msg->attachment_path && count($msg->attachment_path) > 0)
@if (is_array($msg->attachment_path) && count($msg->attachment_path) > 0)
@foreach ($msg->attachment_path as $key => $attachment)
@endforeach
@endif
@endif
@if ($msg->message)
{{ $msg->created_at->format('g:i A') }}
{{ $msg->message }}
@endif
@endif
@empty
No messages yet
Start the conversation by sending a message below.