@extends('frontend.layouts.UserMain') {{ translate('Humsafar - Messenger') }} @section('content')
@include('frontend.user.layouts.header')

{{ translate('Chats') }}

@foreach ($chatusers as $chatuser) @php $profileImageData = getProfileImage($chatuser); @endphp
@endforeach
{{--

{{ translate('Contacts') }}

@foreach ($mutualUsers as $chatuser) @php $profileImageData = getProfileImage($chatuser); @endphp
@if ($userpackage)
@else @endif
@endforeach
--}}
@php $profileImageData = getProfileImage($receiverUser); @endphp profile image {{$receiverUser->first_name}} {{$receiverUser->last_name}}
@foreach ($messages as $msg)

{{ $msg->message }}

{{ $msg->created_at->diffForHumans() }}
@endforeach

{{ translate('Contact Information') }}

profile image

{{$receiverUser->name}}

{{ translate('Hi there! I’m using FuseChat') }}

{{ translate('Age') }}
:

{{$receiverUser->age}}

{{ translate('Gender') }}
:

{{$receiverUser->gender}}

{{ translate('Country') }}
: @if ($receiverUser->userDetails)

{{$receiverUser->userDetails->country->name ?? '' }}

@else

-

@endif
@php if($user->userDetails){ if($user->userDetails->length_id != null){ $length=App\Models\ProfileAttributeMeta::where('id', $user->userDetails->length_id)->first(); }else{ $length=null; } } else{ $length=null; } if($user->userDetails){ if($user->userDetails->eye_color_id != null){ $eye_color=App\Models\ProfileAttributeMeta::where('id', $user->userDetails->eye_color_id)->first(); }else{ $eye_color=null; } } else{ $eye_color=null; } if($user->userDetails){ if($user->userDetails->hair_color_id != null){ $hair_color=App\Models\ProfileAttributeMeta::where('id', $user->userDetails->hair_color_id)->first(); }else{ $hair_color=null; } } else{ $hair_color=null; } if($user->userDetails){ if($user->userDetails->body_type_id != null){ $body_type=App\Models\ProfileAttributeMeta::where('id', $user->userDetails->body_type_id)->first(); }else{ $body_type=null; } } else{ $body_type=null; } @endphp

{{ translate('What do i look like') }}?

{{ translate('My Eyes') }}
:

@if($eye_color) {{ $eye_color->name}} @else N/A @endif

{{ translate('My Hair') }}
:

@if($hair_color) {{ $hair_color->name}} @else N/A @endif

{{ translate('Body Type') }}
:

@if($body_type) {{$body_type->name}} @else N/A @endif

{{ translate('Length') }}
:

@if($length) {{ $length->name}} @else N/A @endif

@endsection