@php // echo "
";
	// print_r($ChatDetails);
// echo "
"; $Today=date('d-m-Y'); $DisplayToday=''; $DisplayYesterday=''; $Chatcount=0; @endphp @foreach($ChatDetails as $EachChatDetails) @php $MsgDisplayType="you"; $Chatcount++; $Message=$EachChatDetails->Message; $MessageSendType=$EachChatDetails->MessageSendType; $ConversationLinkingId=$EachChatDetails->ConversationLinkingId; $CreatedDate=$EachChatDetails->CreatedDate; $WhatsAppConversationId=$EachChatDetails->WhatsAppConversationId; if($MessageSendType==1) { $DateTimeColor="red"; $MsgDisplayType="you"; } elseif($MessageSendType==2) { $DateTimeColor="white"; $MsgDisplayType="me"; } $CheckDate=date('d-m-Y',strtotime($CreatedDate)); if($Today==$CheckDate) { $DisplayTime=date('H:i A',strtotime($CreatedDate)); } else { $DisplayTime=date('d-m-Y H:i A',strtotime($CreatedDate)); } @endphp
{{$Message}}
{{$DisplayTime}}
@endforeach