@extends($activeTemplate.'layouts.master') @section('content')

Investment Plans

The plans we offer is specifically made for you.

@php $plans = App\Models\Plan::with('timeSetting') ->whereHas('timeSetting', function ($time) { $time->where('status', 1); }) ->where('status', 1) ->get(); $gatewayCurrency = null; if (auth()->check()) { $gatewayCurrency = App\Models\GatewayCurrency::whereHas('method', function ($gate) { $gate->where('status', 1); }) ->with('method') ->orderby('method_code') ->get(); } @endphp @foreach ($plans as $plan)

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

Daily Profit

{{ $plan->interest_type != 1 ? $general->cur_sym : '' }}{{ showAmount($plan->interest) }}{{ $plan->interest_type == 1 ? '%' : '' }}

Investment Amount

@if ($plan->fixed_amount == 0) {{ showAmount($plan->minimum) }} - {{ showAmount($plan->maximum) }} @else {{ showAmount($plan->fixed_amount) }} @endif{{ __($general->cur_sym) }}

Plan Valid

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

Total Profit

@if ($plan->lifetime == 0) @if ($plan->capital_back == 1) @lang('capital') + @endif {{ __($plan->interest * $plan->repeat_time) }}{{ $plan->interest_type == 1 ? '%' : ' ' . __() }} @else @lang('Unlimited') @endif{{ __($general->cur_sym) }}

@csrf

Investment Refer Bonus

Refer Bonus Level 1: 10%

Refer Bonus Level 2: 5%

@endforeach
@endsection