@foreach ($messages as $message)
@if ($message->role != 'admin')
{{ date_format($message->created_at, 'd M Y H:i A') }} {{ __('Your Message') }}
{!! nl2br(html_entity_decode($message->message))!!}
@if ($message->attachment)
{{ __('Attachment') }}
{{ __('View Attached Image') }}
@endif
@else
{{ date_format($message->created_at, 'd M Y H:i A') }} {{ __('Admin Response') }}
{!! nl2br(html_entity_decode($message->message))!!}
@if ($message->attachment)
{{ __('Attachment') }}
{{ __('View Attached Image') }}
@endif
@endif
@endforeach