{{ $package->name }}
-
{{ $package->express_interest }} {{ translate('Express Interests') }}
-
{{ $package->photo_gallery }} {{ translate('Gallery Photo Upload') }}
-
{{ $package->contact }} {{ translate('Contact Info View') }}
-
{{ $package->profile_viewers_view }} {{ translate('Profile Viewer View') }}
@if (get_setting('profile_picture_privacy') == 'only_me')
-
{{ $package->profile_image_view }} {{ translate('Profile Image View') }}
@endif
@if (get_setting('gallery_image_privacy') == 'only_me')
-
{{ $package->gallery_image_view }} {{ translate('Gallery Image View') }}
@endif
-
@if ($package->auto_profile_match == 0)
{{ translate('Show Auto Profile Match') }}
@else
{{ translate('Show Auto Profile Match') }}
@endif
@php
$package_price = $package->price;
@endphp
@if ($package->id == 1)
{{ translate('Free') }}
@else
@if (addon_activation('referral_system') && Auth::user()->referred_by != null && Auth::user()->referral_comission == 0)
@php
$discount_type = get_setting('referral_user_package_purchase_discount_type');
if ($discount_type == 'percent') {
$discount = ($package->price * get_setting('referral_user_package_purchase_discount')) / 100;
} else {
$discount = get_setting('referral_user_package_purchase_discount');
}
$package_price = $package_price - $discount;
@endphp
{{ single_price($package->price) }}
{{ single_price($package_price) }}
@else
{{ single_price($package_price) }}
@endif
@endif
{{ $package->validity }}
{{ translate('Days') }}