@extends('frontend.layouts.member_panel') @section('panel_content') @php $user = Auth::user(); @endphp
{{ get_remaining_value($user->id,'remaining_interest') }}
{{ translate('Remaining Interest') }}
{{ get_remaining_value($user->id,'remaining_contact_view') }}
{{ translate('Remaining Contact View') }}
{{ get_remaining_value($user->id,'remaining_photo_gallery') }}
{{ translate('Remaining Gallery Image Upload') }}

{{ translate('Current package') }}

{{$user->member->package->name}}
  • {{ $user->member->package->express_interest }} {{ translate('Express Interests') }}
  • {{ $user->member->package->photo_gallery }} {{ translate('Galley Photo Upload') }}
  • {{ $user->member->package->contact }} {{ translate('Contact Info View') }}
  • @if( $user->member->package->auto_profile_match == 0 ) {{ translate('Show Auto Profile Match') }} @else {{ translate('Show Auto Profile Match') }} @endif

{{ translate('Package expiry date') }}: @if(package_validity($user->id)) {{ $user->member->package_validity }} @else {{translate('Expired')}} @endif

{{ translate('Upgrade Package') }}

{{ translate('Matched profile') }}

@if(Auth::user()->member->auto_profile_match == 1)
@forelse ($similar_profiles->shuffle()->take(5) as $similar_profile) @if($similar_profile->matched_profile != null)
@php $profile_picture_show = 'ok'; $profile_picture_privacy = $similar_profile->matched_profile->member->profile_picture_privacy; if($profile_picture_privacy == '0') { $profile_picture_show = 'no'; } elseif($profile_picture_privacy == 2) { if(Auth::user()->membership == 1) { $profile_picture_show = 'no'; } } @endphp
{{ $similar_profile->matched_profile->first_name.' '.$similar_profile->matched_profile->last_name }}
@if(!empty($similar_profile->matched_profile->member->birthday)) {{ \Carbon\Carbon::parse($similar_profile->matched_profile->member->birthday)->age }} {{ translate('yrs') }}, @endif @if(!empty($similar_profile->matched_profile->physical_attributes->height)) {{ $similar_profile->matched_profile->physical_attributes->height }} {{ translate('Feet') }}, @endif @if(!empty($similar_profile->matched_profile->member->marital_status->name)) {{ $similar_profile->matched_profile->member->marital_status->name }}, @endif {{ !empty($similar_profile->matched_profile->spiritual_backgrounds->religion->name) ? $similar_profile->matched_profile->spiritual_backgrounds->religion->name.', ' : "" }} {{ !empty($similar_profile->matched_profile->spiritual_backgrounds->caste->name) ? $similar_profile->matched_profile->spiritual_backgrounds->caste->name.', ' : "" }} {{ !empty($similar_profile->matched_profile->spiritual_backgrounds->sub_caste->name) ? $similar_profile->matched_profile->spiritual_backgrounds->sub_caste->name : "" }}
@endif @empty
{{ translate('Update your partner expectation for auto match making') }}
@endforelse
@else
{{ translate('Upgrade your package for auto match making') }}
@endif
@endsection