{{ __('Investment Plans') }}
{{ __("Here is our several investment plans. You can invest daily, weekly or monthly and get higher returns in your investment.") }}
{{ __("Choose your favourite plan and start earning now.") }}
@foreach($plans as $ivp)
@endforeach
{{ data_get($ivp, 'name') }}
@if(sys_settings('iv_plan_desc_show') == 'yes'){{ data_get($ivp, 'desc') }}
@endif
{{ data_get($ivp, 'rate_text') }}
{{ __(':period Interest', [ 'period' => ucfirst(data_get($ivp, 'calc_period'))]) }}
{{ data_get($ivp, 'term') }}
{{ __('Term :type',['type' => ucfirst(data_get($ivp, 'term_type'))]) }}
-
@if(data_get($ivp, 'is_fixed'))
- {{ __('Deposit Amount') }} - {{ money(data_get($ivp, 'amount'), $currency) }}
- {{ __('Deposit Type') }} - {{ __("Fixed") }} @else
- {{ __('Min Deposit') }} - {{ money(data_get($ivp, 'amount'), $currency) }}
- {{ __('Max Deposit') }} - {{ data_get($ivp, 'maximum') ? money(data_get($ivp, 'maximum'), $currency) : __("Unlimited") }} @endif
- {{ __('Capital Return') }} - @if(data_get($ivp, 'capital')) {{ __('End of Term') }} @else {{ __('Each Term') }} @endif @if(sys_settings('iv_plan_total_percent') == 'yes')
- {{ __('Total Return') }} - {{ data_get($ivp,'total_return') }}% @endif