@foreach ($plans as $plan)

{{ __($plan->name) }}

@if ($plan->lifetime == 0) @lang('Total') {{ $plan->interest * $plan->repeat_time }}{{ $plan->interest_type == 1 ? '%' : ' ' . __(gs('cur_text')) }} @lang('ROI') @else @lang('Unlimited') @endif

{{ $plan->interest_type != 1 ? gs('cur_sym') : '' }}{{ showAmount($plan->interest, currencyFormat:false) }}{{ $plan->interest_type == 1 ? '%' : '' }}

@lang('EVERY') {{ __(strtoupper($plan->timeSetting->name)) }} @lang('FOR') @if ($plan->lifetime == 0) {{ __($plan->repeat_time) }} {{ __($plan->timeSetting->name) }} @else @lang('LIFETIME') @endif

  • @lang('Investment') @if ($plan->fixed_amount == 0) {{ showAmount($plan->minimum) }} - {{ showAmount($plan->maximum) }} @else {{ showAmount($plan->fixed_amount) }} @endif
  • @lang('Max. Earn') @php if ($plan->fixed_amount == 0) { $investAmo = $plan->maximum; } else { $investAmo = $plan->fixed_amount; } if ($plan->lifetime == Status::NO) { if ($plan->interest_type == 1) { $interestAmo = (($investAmo * $plan->interest) / 100) * $plan->repeat_time; } else { $interestAmo = $plan->interest * $plan->repeat_time; } } else { $interestAmo = 'Unlimited'; } @endphp {{ $plan->lifetime == Status::NO ? showAmount($interestAmo) : $interestAmo }}
  • @lang('Total Return') @if ($plan->lifetime == Status::NO) @if ($plan->capital_back == Status::YES) @lang('capital') + @endif {{ __($plan->interest * $plan->repeat_time) }}{{ $plan->interest_type == 1 ? '%' : ' ' . __(gs('cur_text')) }} @else @lang('Unlimited') @endif
  • @if ($plan->compound_interest)
  • @lang('Compound interest available')
  • @endif @if ($plan->hold_capital)
  • @lang('Hold capital & reinvest')
  • @endif
@endforeach @push('script') @endpush