@extends('layouts.front') @section('content')
@foreach($plans as $p)

{{$p->name}}

{{$p->plantype->name}}
${{number_format($p->minimum)}} / Min

-

@if($p->maximum >= 1000000) Unlimited @else ${{ number_format($p->maximum) }} / Max@endif

  • Term Duration {{$p->time}} @if($p->compound->name == 'Hourly') Hours @elseif($p->compound->name == 'Daily') Days @elseif($p->compound->name == 'Weekly') Weeks @elseif($p->compound->name == 'Monthly') Months @elseif($p->compound->name == 'Yearly') Years @endif
  • @php $desc = explode(",", $p->description); @endphp
    @foreach($desc as $d)
  • {{$d}}

  • @endforeach
  • {{$p->total_percent}}% ROI Monthly

@endforeach
@endsection