@foreach($investments as $key => $investment)
@if($investment->is_recommend)
{{ __('Recommend') }}
@endif
{{ __('Investment amount limit') }}
: @if($investment->type == \App\Enums\Investment\InvestmentRage::RANGE->value)
{{ getCurrencySymbol() }}{{shortAmount($investment->minimum)}}
- {{ getCurrencySymbol() }}{{shortAmount($investment->maximum)}}
@else
{{ getCurrencySymbol() }}{{shortAmount($investment->amount)}}
@endif
@if(!empty($investment->meta))
@foreach($investment->meta as $value)
-
{{ $value }}
@endforeach
@endif
{{ __('Total Return') }} :
@if ($investment->interest_return_type == \App\Enums\Investment\ReturnType::REPEAT->value)
{{ totalInvestmentInterest($investment) }}
@else
@lang('Unlimited')
@endif
@if($investment->recapture_type == \App\Enums\Investment\Recapture::HOLD->value)
@endif
@endforeach