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

Investment Plans

+ New Plan
@if(session('success'))
{{ session('success') }}
@endif
@foreach($plans as $i => $p) @endforeach @if($plans->isEmpty()) @endif
#NameRangeDaily %TermCompoundingActions
{{ $i+1 }} {{ $p->name }} {{ $p->min_amount }} - {{ $p->max_amount }} USDT {{ $p->daily_rate }} {{ $p->term_days }} days @if($p->compounding) Yes @else No @endif Edit
@csrf @method('DELETE')
No plans yet.
@endsection