@if (count($plans) > 0)
@if ($planSelected) {{ $planSelected->name }} @else Select your a plan @endif
    @foreach ($plans as $plan)
  • {{ $plan->name }} @if ($plan->status == 'inactive') {{ $plan->status }} @endif
  • @endforeach

Choose Quick Amount to Invest

Or Enter Your Amount

Choose Payment Method

  • Account Balance
    {{ $settings->currency }}{{ number_format(Auth::user()->account_bal) }}
  • {{--
  • BTC Wallet Balance: 0.00038828 BTC
  • --}}

Your Investment Details

Name of plan

{{ $planSelected ? $planSelected->name : '-' }}

Plan Price

{{ $settings->currency }}{{ $planSelected ? $planSelected->price : '-' }}

Duration

{{ $planSelected ? $planSelected->expiration : '-' }}

Profit

@if ($planSelected) @if ($planSelected->increment_type == 'Fixed') {{ $settings->currency }}{{ $planSelected->increment_amount }} {{ $planSelected->increment_interval }} @else {{ $planSelected->increment_amount }}% {{ $planSelected->increment_interval }} @endif @else - @endif

Minimum Deposit

{{ $planSelected ? $settings->currency . $planSelected->min_price : '-' }}

Maximum Deposit

{{ $planSelected ? $settings->currency . $planSelected->max_price : '-' }}

Minimum Return

{{ $planSelected ? $planSelected->minr . '%' : '-' }}

Maximum Return

{{ $planSelected ? $planSelected->maxr . '%' : '-' }}

Bonus

{{ $planSelected ? $settings->currency . $planSelected->gift : '-' }}

Payment method: {{ $paymentMethod ? $paymentMethod : '-' }}

Amount to Invest: {{ $settings->currency }}{{ $amountToInvest ? number_format($amountToInvest) : '0' }}
@if ($planSelected->status == 'active')
@else You cannot invest in this plan at the moment because it's inactive @endif {{ $feedback }}
@else

No investment plan at the moment, please contact our support for more information

@endif