@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)}}
@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
@empty
{{ translate('No record found') }}
@endforelse
@if($accept_likes_fromMe->isEmpty() && $accept_likes_from_request_users->isEmpty())
{{ translate('No record found') }}
@else
@foreach ($accept_likes_fromMe 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
You received a like from {{$like_notification->requestToUser->name}}
{{ formatDate($like_notification->created_at)}}
@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.') }}
@if ($like_notification->status==1)
@endif
@endforeach
@foreach ($accept_likes_from_request_users as $like_notification)
@php
$profileImageData = getProfileImage($like_notification->myrequestToUser);
if($like_notification->myrequestToUser->userDetails){
if($like_notification->myrequestToUser->userDetails->languages != null){
$language=App\Models\ProfileAttributeMeta::where('id', $like_notification->myrequestToUser->userDetails->languages)->first();
}
else{
$language=null;
}
} else{
$language=null;
}
@endphp
{{ translate('You Send a like to') }} {{$like_notification->myrequestToUser->name}}
{{ formatDate($like_notification->created_at)}}
@if($profileImageData['is_blurred'])
@endif
{{$like_notification->myrequestToUser->name}} ✅
{{ translate('Online 1d ago') }}
{{ $like_notification->myrequestToUser->age }} {{ translate('Years Old') }} | @if($like_notification->myrequestToUser->userDetails)
@if($like_notification->myrequestToUser->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.') }}
@if ($like_notification->status == 1)
@elseif ($like_notification->status == '0')
{{ translate('Decline') }}
@elseif ($like_notification->status == null )
{{ translate('Pending') }}
@endif
@endforeach
@endif
@forelse ($my_likes_requests as $like_notification)
@php
$profileImageData = getProfileImage($like_notification->myrequestToUser);
if(isset($like_notification->myrequestToUser->userDetails)){
if($like_notification->myrequestToUser->userDetails->languages != null){
$language=App\Models\ProfileAttributeMeta::where('id', $like_notification->myrequestToUser->userDetails->languages)->first();
}
else{
$language=null;
}
} else{
$language=null;
}
@endphp
@if ($like_notification->myrequestToUser!=null)
{{ translate('You Send a like to') }} {{$like_notification->myrequestToUser->name}}
{{ formatDate($like_notification->created_at)}}
@if($profileImageData['is_blurred'])
@endif
{{$like_notification->myrequestToUser->name}} ✅
{{ translate('Online 1d ago') }}
{{ $like_notification->myrequestToUser->age }} {{ translate('Years Old') }} | @if($like_notification->myrequestToUser->userDetails)
@if($like_notification->myrequestToUser->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.') }}
@if ($like_notification->status == 1)
@elseif ($like_notification->status == '0')
{{ translate('Decline') }}
@elseif ($like_notification->status == null )
{{ translate('Pending') }}
@endif
@endif
@empty
{{ translate('No record found') }}
@endforelse
@forelse ($requestedImages as $like_notification)
@php
$profileImageData = getProfileImage($like_notification->imageUser);
if($like_notification->imageUser->userDetails){
if($like_notification->imageUser->userDetails->languages != null){
$language=App\Models\ProfileAttributeMeta::where('id', $like_notification->imageUser->userDetails->languages)->first();
}
else{
$language=null;
}
} else{
$language=null;
}
@endphp
{{ translate('You received an image Request from') }} {{$like_notification->imageUser->name}}
{{ formatDate($like_notification->created_at)}}
@if($profileImageData['is_blurred'])
@endif
{{$like_notification->imageUser->name}} ✅
{{ translate('Online 1d ago') }}
{{ $like_notification->imageUser->age }} {{ translate('Years Old') }} | @if($like_notification->imageUser->userDetails)
@if($like_notification->imageUser->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.') }}
{{--
--}}
@empty
{{ translate('No record found') }}
@endforelse