@foreach($order->messages()->orderBy('id','desc')->get() as $message)
@if($message->sender==0)
To:{{ ucwords($message->destination ? $message->destination:'Support') }}
{{ $message->created_at }}
@else
From: {{ ucwords($message->destination ? $message->destination:'Support') }}
{{ $message->created_at }}
@endif
@endforeach