@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