@extends($theme.'frontend.layouts.master')
@section('title',__('Plan'))
@section('content')
@if(count($roi_plans))
-
@endif
@if(count($fixed_plans))
-
@endif
@foreach($roi_plans as $data)
@php
$getTime = \App\Models\ManageTime::where('time', $data->period)->first();
@endphp
{{__($data->name)}}
{{$data->percent}}% {{__('Payback')}} {{trans($getTime->name)}}
- {{__('Minimum Deposit')}} {{$data->min_amount}} {{$general->currency}}
- {{__('Maximum Deposit')}} {{$data->max_amount}} {{$general->currency}}
- {{__('ROI Action')}} {{$data->action}} {{__('TIMES')}}
- {{__('Capital Return')}} @if($data->capital_back_status == 0)
@lang('Off') @else @lang('On') @endif
@endforeach
@foreach($fixed_plans as $data)
@php
$getTime = \App\Models\ManageTime::where('time', $data->period)->first();
@endphp
{{__($data->name)}}
{{$data->percent}}% {{__('Payback')}} {{trans($getTime->name)}}
- {{__('Deposit')}} {{$data->fixed_amount}}{{$general->currency}}
- {{__('ROI Action Lifetime TIMES')}}
- {{__('Capital Return')}} @if($data->capital_back_status == 0)
@lang('Off') @else @lang('On') @endif
{{__('Invest Now')}}
@endforeach
@endsection
@section('script')
@endsection