@extends('user::layouts.backend-master') @section('breadcrumb_title', 'Support Messages') @push('styles') @endpush @section('content')
@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.

@endforelse
@csrf
      @endsection @push('scripts') @endpush