@foreach($investments as $key => $investment)
{{ $investment->name }}
@if($investment->interest_return_type == \App\Enums\Investment\ReturnType::REPEAT->value)
{{ (int)$investment->duration }} {{ $investment->timeTable->name ?? '' }}
@else
{{ __('Lifetime') }}
@endif

{{ __('Interest Rate') }}: {{ shortAmount($investment->interest_rate) }}{{ \App\Enums\Investment\InterestType::getSymbol($investment->interest_type) }}

@if($investment->is_recommend) {{ __('Recommend') }} @endif

{{ __('Terms and Policies') }}

@endforeach