@php $profitCalculatorContent = getContent('profit_calculator.content', true); $plans = App\Models\Plan::active()->get(); @endphp @if (count($plans))

@lang('Calculate Your Profits')

@php $firstPlan = @$plans->first(); @endphp
@lang('Invest')

{{ gs('cur_sym') }}{{ showAmount(@$firstPlan->fixed_amount, currencyFormat: false) }}

@lang('With Capital')

@lang('Yes')

@lang('Net profit')

{{ showAmount(($firstPlan->fixed_amount * $firstPlan->interest) / 100) }}

@lang('Total Income')

{{ showAmount((@$firstPlan->fixed_amount * @$firstPlan->interest) / 100 + @$firstPlan->fixed_amount) }}

@endif @push('style-lib') @endpush @push('script-lib') @endpush @push('style') @endpush @push('script') @if (count($plans)) @endif @endpush