@if($chat)

@if($chat->from_id == auth()->id() ) {{ $chat->to->name }} @else {{ $chat->from->name }} @endif

{{ $chat->updated_at->diffForHumans() }}
{{ $chat->to->age }} {{ __("Years Old") }}
{{ __("Nationality")}} {{ $chat->to->nationality?->title }}
{{ __($chat->to->familySitation?->title ) }}
{{ __("Residing in")}} {{ $chat->to->country?->name }}
@forelse($messages as $message)
{{ $message->message }}
{{ $message->updated_at?->format('h:i A') }}
@empty

{{ __("Start your conversation now") }}

@endforelse
@endif