@foreach($plans as $index=> $plan)
|
|
{{ ++$index }} |
{{ $plan->title }} |
@if($plan->invest_type == 'fixed')
{{ showPrice($plan->fixed_amount) }} |
@else
{{ showPrice($plan->min_amount) }} - {{ showPrice($plan->max_amount) }} |
@endif
{{ $plan->roi }}% |
|
|
@endforeach