@extends('layouts.app') @section('title','Investment Plans') @push('styles') @endpush @section('content')

Choose Your Plan

My Investments
@foreach($plans as $p)
{{ $p->name }}
{{ $p->description }}
Daily: {{ rtrim(rtrim(number_format($p->daily_rate,2), '0'), '.') }}%
Term: {{ $p->term_days }} days
Range: {{ $p->min_amount }} - {{ $p->max_amount }} USDT
Invest
@endforeach
@endsection