@extends('frontend.layouts.UserMain') {{ translate('Humsafar - Notification') }} @section('content')
@include('frontend.user.layouts.header2')
@forelse ($like_notifications as $like_notification) @php $profileImageData = getProfileImage($like_notification->requestToUser); if($like_notification->requestToUser->userDetails){ if($like_notification->requestToUser->userDetails->languages != null){ $language=App\Models\ProfileAttributeMeta::where('id', $like_notification->requestToUser->userDetails->languages)->first(); } else{ $language=null; } } else{ $language=null; } @endphp
{{ translate('You received a like from') }} {{$like_notification->requestToUser->name}}

{{ formatDate($like_notification->created_at)}}


Dora's Profile @if($profileImageData['is_blurred']) @endif
{{$like_notification->requestToUser->name}}
{{ translate('Online 1d ago') }}

{{ $like_notification->requestToUser->age }} Years Old|@if($like_notification->requestToUser->userDetails) @if($like_notification->requestToUser->userDetails->language) {{ $language->name}} @else N/A @endif @else N/A @endif

✉ {{ translate('Hi, it is nice connecting with you. I liked your profile and would like to take this forward.') }}'

{{ translate('She invited you to Connect') }}

@if ($like_notification->status==null)
@endif
{{ translate('View my Profile') }} @if (in_array($like_notification->requestToUser->id, $reportedUserIds->toArray())) @else {{ translate('Report This Profile') }} @endif
@empty
{{ translate('No record found') }}
@endforelse
@endsection @push('scripts') @endpush