@php echo "
";
	//print_r($EmailConversations);
echo "
"; @endphp @if(count($EmailConversations)!=0)
@foreach($EmailConversations as $key=> $ec) @if($ec['EmailType']=="Inbound")
{{date('d-M-Y h:i:s',strtotime($ec['SentDate']))}}
From : {{$ec['FromAddress']}}

{{$ec['EmailSubject']}}

@php echo $ec['DescriptionHtml']; @endphp
@endif @if($ec['EmailType']=="Outbound")
{{date('d-M-Y h:i:s',strtotime($ec['SentDate']))}}
From : {{$ec['FromAddress']}}

{{$ec['EmailSubject']}}

@php echo $ec['DescriptionHtml']; @endphp
@endif @endforeach
@else No Conversations! @endif