@extends('layouts.mobile-user') @section('content')
@foreach($plan as $p)

{{ $p->name }}

{{ $basic->currency }} {{ number_format($p->minimum) }} - {{ $basic->currency }} @if($p->maximum >= 1000000) Unlimited @else{{ number_format($p->maximum) }}@endif
  • ROI - {{ $p->percent }}% - {{ $p->end_percent }}% {{ $p->compound->name }}
  • Total ROI - {{ $p->total_percent }}%
@endforeach
@foreach($forex as $p)

{{ $p->name }}

{{ $basic->currency }} {{ number_format($p->minimum) }} - {{ $basic->currency }} @if($p->maximum >= 1000000) Unlimited @else{{ number_format($p->maximum) }}@endif
  • ROI - {{ $p->percent }}% - {{ $p->end_percent }}% {{ $p->compound->name }}
  • Total ROI - {{ $p->total_percent }}%
  • Stop Loss - {{$p->stop_loss}}
  • Risk Factor - {{$p->risk_factor}}
@endforeach
@endsection @section('scripts') @endsection