@if ($package_count >= 2 && $next_membership)
@if ($next_membership->status == 0)
{{ __('You have requested a package which needs an action (Approval / Rejection) by Admin. You will be notified via mail once an action is taken.') }}
@elseif ($next_membership->status == 1)
{{ __('You have another package to activate after the current package expires. You cannot purchase / extend any package, until the next package is activated') }}
@endif
@endif
{{ __('Current Package') . ':' }} {{ $current_package->title }}
{{ $current_package->term }}
@if ($current_membership->is_trial == 1)
({{ __('Expire Date') . ':' }}
{{ Carbon\Carbon::parse($current_membership->expire_date)->format('M-d-Y') }})
{{ __('Trial') }}
@else
({{ __('Expire Date') . ':' }}
{{ $current_package->term === 'lifetime' ? 'Lifetime' : Carbon\Carbon::parse($current_membership->expire_date)->format('M-d-Y') }})
@endif
@if ($package_count >= 2 && $next_package)
{{ __('Next Package To Activate') . ':' }} {{ $next_package->title }} {{ $next_package->term }}
@if ($current_package->term != 'lifetime' && $current_membership->is_trial != 1)
(
{{ __('Activation Date') . ':' }}
{{ Carbon\Carbon::parse($next_membership->start_date)->format('M-d-Y') }},
{{ __('Expire Date') . ':' }}
{{ $next_package->term === 'lifetime' ? 'Lifetime' : Carbon\Carbon::parse($next_membership->expire_date)->format('M-d-Y') }})
@endif
@if ($next_membership->status == 0)
{{ __('Decision Pending') }}
@endif
@endif